/* Admin-specific styles */
.card {
    box-shadow: 0 0.15rem 1.75rem 0 rgba(58, 59, 69, 0.15);
    margin-bottom: 1.5rem;
}

.card .card-header {
    font-weight: 700;
}








.navbar .navbar-custom {
    background-color: #10047e; /* Bootstrap primary blue */
}



.card-footer {
    background-color: #f8f9fa;
    border-top: 1px solid #e3e6f0;
}

.alert {
    border: none;
    border-radius: 0.35rem;
}

.badge {
    font-size: 0.75em;
    font-weight: 700;
}

.table th {
    border-top: none;
    font-weight: 700;
    color: #4e73df;
}

.progress {
    height: 20px;
    border-radius: 0.35rem;
}

.progress-bar {
    font-size: 0.75rem;
}





/* style.css */
.navbar-nav .nav-link {
    color: #fff !important;  /* force white text */
    font-weight: bold;          /* make text bold */
}

.navbar-nav .nav-link:hover {
    color: #fff !important;  /* slightly lighter white on hover */
}


/* Dashboard stats */
.card-stats .card-body {
    padding: 1.5rem;
}

/* Navigation active state */
.navbar-dark .navbar-nav .nav-link.active {
    color: #fff;
    font-weight: 700;
}

/* Button styles */
.btn {
    border-radius: 0.35rem;
    font-weight: 600;
}

.btn-sm {
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
}

/* Form styles */
.form-control, .form-select {
    border-radius: 0.35rem;
    padding: 0.75rem 1rem;
}

.form-control:focus, .form-select:focus {
    box-shadow: 0 0 0 0.2rem rgba(78, 115, 223, 0.25);
}

/* Table styles */
.table-responsive {
    border-radius: 0.35rem;
}

.table-striped tbody tr:nth-of-type(odd) {
    background-color: #f8f9fc;
}

/* Pagination */
.pagination {
    margin-bottom: 0;
}

.page-item.active .page-link {
    background-color: #10047e;
    border-color: #10047e;
}

.page-link {
    color: #10047e;
}

.page-link:hover {
    color: #10047e;
}

/* List group */
.list-group-item.active {
    background-color: #10047e;
    border-color: #10047e;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .card-body {
        padding: 1rem;
    }
    
    .table-responsive {
        font-size: 0.875rem;
    }
    
    .btn-sm {
        padding: 0.2rem 0.4rem;
        font-size: 0.75rem;
    }
}

/* Additional styles for frontend pages */
.hero-section {
    background: linear-gradient(135deg, #10047e 0%, #10047e 100%);
}

.card {
    box-shadow: 0 0.15rem 1.75rem 0 rgba(58, 59, 69, 0.15);
    margin-bottom: 1.5rem;
    transition: transform 0.3s;
}

.card:hover {
    transform: translateY(-5px);
}

.card .card-header {
    font-weight: 700;
}

.alert {
    border: none;
    border-radius: 0.35rem;
}

.badge {
    font-size: 0.75em;
    font-weight: 700;
}

.table th {
    border-top: none;
    font-weight: 700;
    color: #10047e;
}

.progress {
    height: 20px;
    border-radius: 0.35rem;
}

.progress-bar {
    font-size: 0.75rem;
}

/* Form styles */
.form-control, .form-select {
    border-radius: 0.35rem;
    padding: 0.75rem 1rem;
}

.form-control:focus, .form-select:focus {
    box-shadow: 0 0 0 0.2rem rgba(78, 115, 223, 0.25);
}

/* Button styles */
.btn {
    border-radius: 0.35rem;
    font-weight: 600;
}

.btn-sm {
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
}

/* Pagination */
.pagination {
    margin-bottom: 0;
}

.page-item.active .page-link {
    background-color: #10047e;
    border-color: #10047e;
}

.page-link {
    color: #10047e;
}

.page-link:hover {
    color: #10047e;
}

/* List group */
.list-group-item.active {
    background-color: #10047e;
    border-color: #10047e;
}

/* Profile page specific styles */
.profile-stats {
    background-color: #f8f9fa;
    border-radius: 0.35rem;
    padding: 1rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .card-body {
        padding: 1rem;
    }
    
    .table-responsive {
        font-size: 0.875rem;
    }
    
    .btn-sm {
        padding: 0.2rem 0.4rem;
        font-size: 0.75rem;
    }
}