/* General Styles */
body {
    font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: #f4f7f6;
    color: #333;
}

.navbar {
    background-color: #ffffff !important;
    border-bottom: 1px solid #e0e0e0;
}

.navbar-brand {
    font-weight: 600;
    color: #0056b3 !important; /* A professional blue */
}

.btn-primary {
    background-color: #007bff;
    border-color: #007bff;
}
.btn-primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
}

.btn-outline-primary {
    color: #007bff;
    border-color: #007bff;
}
.btn-outline-primary:hover {
    background-color: #007bff;
    color: #fff;
}

.btn-success {
    background-color: #28a745;
    border-color: #28a745;
}
.btn-success:hover {
    background-color: #218838;
    border-color: #1e7e34;
}

.btn-danger {
    background-color: #dc3545;
    border-color: #dc3545;
}
.btn-danger:hover {
    background-color: #c82333;
    border-color: #bd2130;
}

.card {
    border: none;
    border-radius: 0.5rem;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

.card-title {
    color: #0056b3;
    font-weight: 600;
}

/* Specific to Sales Page */
#sale-items-list .btn-sm {
    padding: .25rem .5rem;
    font-size: .75rem;
}

#subtotal, #iva, #total {
    font-weight: 700;
    color: #0056b3;
}

/* Specific to Dashboard/Admin Pages */
h1 {
    color: #0056b3;
    font-weight: 700;
}

.table thead th {
    background-color: #e9ecef;
    color: #495057;
    font-weight: 600;
}

.badge {
    font-size: 0.85em;
    padding: 0.4em 0.6em;
}

/* Form styling for crispy forms */
.form-control {
    border-radius: 0.25rem;
}

.form-label {
    font-weight: 500;
    color: #495057;
}
