/* Custom styles for CRM Portal */

body {
    background-color: #f8f9fa;
}

.navbar-brand img {
    margin-right: 8px;
}

.card {
    border: none;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

.card-header {
    background-color: #fff;
    border-bottom: 1px solid #dee2e6;
}

.table th {
    border-top: none;
    font-weight: 600;
}

.badge {
    font-size: 0.75em;
}

.form-control:focus {
    border-color: #80bdff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.btn-primary {
    background-color: #007bff;
    border-color: #007bff;
}

.btn-primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
}

.alert {
    border: none;
    border-radius: 0.375rem;
}

/* Custom styles for the dashboard cards */
.display-6 {
    font-size: 2.5rem;
    font-weight: 300;
    line-height: 1.2;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .display-6 {
        font-size: 2rem;
    }
    
    .table-responsive {
        font-size: 0.875rem;
    }
}

.table {
    border-radius: 0.5rem;
    overflow: hidden;
    background: #fff;
}
.table th, .table td {
    border: none !important;
}
.table-striped > tbody > tr:nth-of-type(odd) {
    background-color: #f8f9fa;
}
.table thead th {
    border-bottom: 2px solid #dee2e6 !important;
    background: #f4f6fb;
} 