:root {
    /* Blue Brand - Keep for logos, critical CTAs */
    --royal-blue: #042c5c;
    --royal-blue-light: rgb(34, 74, 177);
    --royal-blue-dark: #1a356b;

    /* Gold Accents */
    --primary-gold: #b29762;
    --light-gold: #ccbd86;
    --light-gold-dark: rgb(182, 164, 110);
    --primary-gold-dark: #947840;

    /* Dark Gray Theme - Primary replacement for blue */
    --charcoal-slate: #2d3748;
    --deep-gray: #1a202c;

    --light-gray: #f8f9fa;
    --dark-gray: #343a40;

    /* Applicant colors */
    --applicant-primary: #2878a7;
    --applicant-primary-light: #d4edda;
    --applicant-primary-dark: #153f57;

    /* Reviewer colors */
    --reviewer-blue: #17a2b8;
    --reviewer-blue-light: #d1ecf1;
    --reviewer-blue-dark: #0c5460;

    /* Admin colors */
    --admin-yellow: #222222;
    --admin-yellow-light: #fff3cd;
    --admin-yellow-dark: #0f0f0f;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f5f7fb;
    color: #333;
}

.navbar {
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    border-bottom: 5px solid var(--primary-gold);
    padding: 20px;
    top: 0;
    z-index: 1030;
}

/* Session Timer Styles */
#session-timer {
    color: white;
    font-weight: 600;
    font-family: 'Courier New', monospace;
    transition: color 0.3s ease;
}

#session-timer.text-warning {
    color: var(--light-gold) !important;
    animation: pulse 1s infinite;
}

#session-timer.text-danger {
    color: #dc3545 !important;
    animation: blink 0.5s infinite;
}

@keyframes pulse {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }

    100% {
        opacity: 1;
    }
}

@keyframes blink {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.navbar-brand {
    font-weight: 700;
    color: white !important;
    font-size: 35px;
}

.sidebar {
    background: white;
    border-right: 1px solid #eaeaea;
    height: calc(100vh - 100px);
    padding: 0;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 100px;
    z-index: 1020;
}

.sidebar-sticky {
    height: calc(100vh - 100px);
    padding-top: 20px;
    overflow-y: auto;
}

.sidebar .nav-link {
    color: var(--dark-gray);
    padding: 12px 20px;
    border-left: 4px solid transparent;
    transition: all 0.2s;
}

.sidebar .nav-link:hover {
    background-color: #f8f9fa;
    border-left: 4px solid var(--primary-gold);
}

.sidebar .nav-link.active {
    background-color: rgba(214, 158, 46, 0.1);
    color: #2d3748;
    border-left: 4px solid var(--primary-gold);
    font-weight: 600;
}

.sidebar .nav-link i {
    margin-right: 10px;
    width: 24px;
    text-align: center;
}

/* Accordion Styles */
.sidebar .accordion-item {
    border: none;
    background: transparent;
}

.sidebar .accordion-button {
    background: transparent;
    border: none;
    color: var(--dark-gray);
    padding: 12px 20px;
    font-weight: 600;
    border-radius: 0 !important;
    box-shadow: none;
}

.sidebar .accordion-button:not(.collapsed) {
    background-color: rgba(214, 158, 46, 0.1);
    color: #2d3748;
}

.sidebar .accordion-button:focus {
    box-shadow: none;
    border: none;
}

.sidebar .accordion-button::after {
    margin-left: auto;
}

.sidebar .accordion-collapse {
    background: #f8f9fa;
}

/* Submenu Styles */
.submenu-nav .nav-link {
    padding: 8px 20px 8px 40px;
    font-size: 0.9rem;
    color: var(--dark-gray);
    border-left: 3px solid transparent;
}

.submenu-nav .nav-link:hover {
    background-color: #e9ecef;
    border-left: 3px solid var(--primary-gold);
}

.submenu-nav .nav-link.active {
    background-color: rgba(214, 158, 46, 0.1);
    color: #2d3748;
    border-left: 3px solid var(--primary-gold);
    font-weight: 600;
}

.submenu-nav .nav-link i {
    margin-right: 8px;
    width: 16px;
    text-align: center;
    font-size: 0.8rem;
}

.main-content {
    padding: 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin: 20px 0;
}

/* Modern Stats Cards */
.stats-card {
    border: none;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    position: relative;
    height: 100%;
    min-height: 140px;
}

.stats-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.stats-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.4) 100%);
}

.stats-card-inner {
    padding: 24px;
    display: flex;
    align-items: center;
    height: 100%;
    position: relative;
    z-index: 1;
}

.stats-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    margin-right: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    flex-shrink: 0;
}

.stats-content {
    flex: 1;
}

.stats-number {
    font-size: 32px;
    font-weight: 800;
    color: white;
    margin-bottom: 4px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.stats-label {
    font-size: 14px;
    font-weight: 600;
    color: rgb(255, 255, 255);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stats-trend {
    font-size: 12px;
    font-weight: 500;
    color: white;
    display: flex;
    align-items: center;
    gap: 4px;
}

.stats-trend i {
    font-size: 10px;
    color: white;
}

/* Individual Card Backgrounds */
.active-studies-card {
    background: linear-gradient(135deg, #66ea7c 0%, #167c2c 100%);
}

.active-studies-card .stats-icon {
    background: rgba(255, 255, 255, 0.2);
}

.pending-reviews-card {
    background: linear-gradient(135deg, #ffd16d 0%, #c99a02 100%);
}

.pending-reviews-card .stats-icon {
    background: rgba(255, 255, 255, 0.2);
}

.overdue-actions-card {
    background: linear-gradient(135deg, #fc7373 0%, #fe0000 100%);
}

.overdue-actions-card .stats-icon {
    background: rgba(255, 255, 255, 0.2);
}

.sae-reports-card {
    background: linear-gradient(135deg, #a743e9 0%, #4e1a70 100%);
}

.sae-reports-card .stats-icon {
    background: rgba(255, 255, 255, 0.2);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .stats-card-inner {
        padding: 20px;
        flex-direction: column;
        text-align: center;
    }

    .stats-icon {
        margin-right: 0;
        margin-bottom: 16px;
    }

    .stats-card {
        min-height: 160px;
    }
}

.btn-primary {
    background-color: var(--royal-blue);
    border-color: var(--royal-blue);
}

.btn-primary:hover {
    background-color: var(--royal-blue-dark);
    border-color: var(--royal-blue-dark);
}

.btn-outline-primary {
    color: var(--royal-blue);
    border-color: var(--royal-blue);
}

.btn-outline-primary:hover {
    background-color: var(--royal-blue);
    color: white;
}

.search-container {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
}

.welcome-banner {
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    color: white;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    border-bottom: 5px solid #d69e2e;
}

.section-title {
    border-bottom: 2px solid var(--primary-gold);
    padding-bottom: 10px;
    margin-bottom: 20px;
    color: #2d3748;
    font-weight: 600;
}

.quick-action {
    text-align: center;
    padding: 15px;
    border-radius: 8px;
    background-color: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    transition: all 0.2s;
}

.quick-action:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.quick-action i {
    font-size: 24px;
    color: var(--royal-blue);
    margin-bottom: 10px;
}

.stats-number {
    font-size: 24px;
    font-weight: 700;
    color: var(--light-gray);
}

.stats-label {
    font-size: 14px;
    color: #ffffff;
}

.study-table {
    font-size: 0.9rem;
}

.study-table th {
    background-color: var(--royal-blue);
    color: white;
    position: sticky;
    top: 0;
    white-space: nowrap;
}

.study-table tr:hover {
    background-color: #f8f9fa;
}

.status-badge {
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.status-open {
    background-color: #d1fae5;
    color: #065f46;
}

.status-closed {
    background-color: #fee2e2;
    color: #b91c1c;
}

.status-pending {
    background-color: #fef3c7;
    color: #92400e;
}

.pagination-container {
    background-color: white;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.table-container {
    max-height: 500px;
    overflow-y: auto;
}

.filter-section {
    background-color: white;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
}

.action-buttons .btn {
    margin-right: 5px;
}

.agenda-table th {
    background-color: var(--royal-blue);
    color: white;
    position: sticky;
    top: 0;
}

.agenda-table tr:hover {
    background-color: #f8f9fa;
}

.new-study-form .card {
    border: 1px solid #e0e0e0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.new-study-form .card-header {
    background-color: #f8f9fa !important;
    border-bottom: 1px solid #e0e0e0;
}

.new-study-form .form-label {
    color: #495057;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.new-study-form .table th {
    /* background-color: #f8f9fa; */
    font-weight: 600;
}

.new-study-form .required-field::after {
    content: " *";
    color: #dc3545;
}

/* Agenda Records Styles */
.modern-agenda-records {
    padding: 20px 0;
    background: linear-gradient(135deg, #fafbfd 0%, #f0f4f8 100%);
    min-height: 100vh;
}

.page-header {
    border-bottom: 2px solid var(--light-gold);
    padding-bottom: 25px;
    margin-bottom: 30px;
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(36, 63, 129, 0.08);
}

.page-title {
    color: var(--royal-blue);
    font-weight: 700;
    margin-bottom: 8px;
    font-size: 2.2rem;
}

.page-subtitle {
    color: var(--royal-blue-light);
    font-size: 1.1rem;
    font-weight: 500;
}

.btn-primary {
    background: linear-gradient(135deg, var(--royal-blue) 0%, var(--royal-blue-light) 100%);
    border: none;
    border-radius: 8px;
    padding: 10px 20px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(36, 63, 129, 0.3);
}

.meeting-info-card {
    border: none;
    border-radius: 12px;
    background: white;
    box-shadow: 0 4px 15px rgba(36, 63, 129, 0.1);
    border-left: 4px solid var(--light-gold);
}

.table-primary {
    background: linear-gradient(135deg, var(--royal-blue) 0%, var(--royal-blue-light) 100%);
    color: white;
    border-radius: 8px;
}

.table-primary th {
    background: transparent;
    border: none;
    padding: 15px;
    font-weight: 600;
    font-size: 0.95rem;
}

.table-striped tbody tr:nth-of-type(odd) {
    background-color: rgba(36, 63, 129, 0.03);
}

.table-hover tbody tr:hover {
    background-color: rgba(191, 159, 98, 0.1);
    transform: translateX(5px);
    transition: all 0.3s ease;
}

.navigation-section {
    background: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(36, 63, 129, 0.1);
}

.pagination .page-link {
    border: 1px solid var(--royal-blue-light);
    color: var(--royal-blue);
    padding: 8px 15px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.pagination .page-item.active .page-link {
    background: linear-gradient(135deg, var(--royal-blue) 0%, var(--royal-blue-light) 100%);
    border-color: var(--royal-blue);
    color: white;
}

.pagination .page-link:hover {
    background-color: var(--royal-blue-light);
    color: white;
}

.filter-section .input-group-text {
    background: var(--royal-blue);
    color: white;
    border: none;
}

.filter-section .form-select {
    border: 1px solid var(--royal-blue-light);
    /* border-left: none; */
}

.main-content-card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(36, 63, 129, 0.15);
    overflow: hidden;
}

.main-content-card .card-header {
    background: linear-gradient(135deg, var(--royal-blue) 0%, var(--royal-blue-light) 100%);
    color: white;
    border: none;
    padding: 20px;
}

.main-content-card .card-title {
    margin-bottom: 5px;
    font-weight: 600;
}

.table-container {
    border-radius: 0 0 12px 12px;
    overflow: hidden;
}

.table th {
    background: var(--royal-blue);
    color: white;
    font-weight: 600;
    border: none;
    padding: 15px 12px;
    font-size: 0.9rem;
}

.table td {
    padding: 15px 12px;
    vertical-align: middle;
    border-color: rgba(36, 63, 129, 0.1);
}

.agenda-badge.expedited {
    background: linear-gradient(135deg, #fff9e6 0%, #ffefc2 100%);
    color: var(--royal-blue-dark);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid var(--light-gold);
}

.type-badge.cpa {
    background: rgba(36, 63, 129, 0.1);
    color: var(--royal-blue);
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    border: 1px solid var(--royal-blue-light);
}

.study-number {
    font-weight: 700;
    color: var(--royal-blue);
    font-family: 'Courier New', monospace;
    background: rgba(36, 63, 129, 0.05);
    padding: 4px 8px;
    border-radius: 4px;
}

.pi-info {
    line-height: 1.3;
}

.pi-name {
    font-weight: 600;
    color: var(--royal-blue);
}

.study-info {
    line-height: 1.3;
}

.study-title {
    font-weight: 600;
    color: var(--dark-gray);
}

.ref-number {
    background: rgba(36, 63, 129, 0.05);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-family: 'Courier New', monospace;
    color: var(--royal-blue);
    border: 1px solid rgba(36, 63, 129, 0.1);
}

.status-badge {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.status-badge.pending {
    background: rgba(255, 193, 7, 0.15);
    color: #856404;
    border: 1px solid rgba(255, 193, 7, 0.3);
}

.status-badge.under-review {
    background: rgba(23, 162, 184, 0.15);
    color: #0c5460;
    border: 1px solid rgba(23, 162, 184, 0.3);
}

.status-badge.approved {
    background: rgba(40, 167, 69, 0.15);
    color: #155724;
    border: 1px solid rgba(40, 167, 69, 0.3);
}

.action-buttons {
    display: flex;
    gap: 8px;
}

.btn-outline-primary {
    border-color: var(--royal-blue);
    color: var(--royal-blue);
}

.btn-outline-primary:hover {
    background: var(--royal-blue);
    border-color: var(--royal-blue);
}

.documents-card,
.stats-card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(36, 63, 129, 0.1);
    height: 100%;
    /* border-top: 3px solid var(--light-gold); */
}

.documents-card .card-header,
.stats-card .card-header {
    background: white;
    border-bottom: 1px solid rgba(36, 63, 129, 0.1);
    padding: 20px;
}

.document-item {
    display: flex;
    align-items: center;
    padding: 20px;
    border: 1px solid rgba(36, 63, 129, 0.1);
    border-radius: 10px;
    background: white;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.document-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(36, 63, 129, 0.15);
}

.document-icon {
    margin-right: 20px;
    background: rgba(220, 53, 69, 0.1);
    padding: 15px;
    border-radius: 10px;
}

.document-details {
    flex: 1;
}

.document-name {
    font-weight: 600;
    color: var(--royal-blue);
    margin-bottom: 8px;
}

.document-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 8px;
}

.meta-item {
    font-size: 0.85rem;
    color: var(--royal-blue-light);
    font-weight: 500;
}

.document-comments {
    font-size: 0.9rem;
    color: var(--dark-gray);
    font-style: italic;
}

.document-actions {
    display: flex;
    gap: 8px;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 10px;
    border: 1px solid rgba(36, 63, 129, 0.1);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(36, 63, 129, 0.15);
}

.stat-value {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--royal-blue-light);
    font-weight: 600;
}

.header-badges {
    display: flex;
    gap: 10px;
}

.badge.bg-primary {
    background: var(--royal-blue) !important;
}

.badge.bg-secondary {
    background: var(--light-gold) !important;
}

.progress {
    background: rgba(36, 63, 129, 0.1);
    border-radius: 10px;
}

.progress-bar {
    border-radius: 10px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .meeting-meta {
        flex-direction: column;
        gap: 10px;
    }

    .action-buttons {
        flex-direction: column;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .document-item {
        flex-direction: column;
        text-align: center;
    }

    .document-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }

    .document-actions {
        margin-top: 15px;
        justify-content: center;
    }

    .header-badges {
        flex-wrap: wrap;
        justify-content: center;
        margin-top: 10px;
    }
}

/* Premium Design Pattern Styles for Admin Content Pages */

/* Page Header Card */
.page-header-card {
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    border-radius: 16px;
    padding: 24px 30px;
    box-shadow: 0 8px 25px rgba(36, 63, 129, 0.2);
    position: relative;
    overflow: hidden;
}

.page-header-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 100%;
    background: linear-gradient(135deg, transparent 50%, rgba(255, 255, 255, 0.1) 50%);
}

.header-icon-wrapper {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.header-icon-wrapper i {
    font-size: 32px;
    color: white;
}

.header-content {
    flex: 1;
}

.page-title {
    color: white;
    font-weight: 700;
    margin-bottom: 8px;
    font-size: 2rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.page-subtitle {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    font-weight: 500;
}

/* Premium Card */
.premium-card {
    border: none;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(36, 63, 129, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
}

.premium-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(36, 63, 129, 0.15);
}

.premium-card .card-header {
    background: linear-gradient(135deg, var(--royal-blue) 0%, var(--royal-blue-light) 100%);
    color: white;
    border: none;
    padding: 20px 24px;
    font-weight: 600;
}

.premium-card .card-body {
    padding: 24px;
}

/* Premium Table */
.premium-table {
    border-collapse: separate;
    border-spacing: 0;
}

.premium-table thead th {
    background: linear-gradient(135deg, var(--royal-blue) 0%, var(--royal-blue-light) 100%);
    color: white;
    font-weight: 600;
    border: none;
    padding: 16px 20px;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.premium-table thead th:first-child {
    border-radius: 12px 0 0 0;
}

.premium-table thead th:last-child {
    border-radius: 0 12px 0 0;
}

.premium-table tbody td {
    padding: 16px 20px;
    vertical-align: middle;
    border-bottom: 1px solid rgba(36, 63, 129, 0.1);
    transition: all 0.2s ease;
}

.premium-table tbody tr {
    transition: all 0.2s ease;
}

.premium-table tbody tr:hover td {
    background: rgba(36, 63, 129, 0.05);
}

.premium-table tbody tr:last-child td:first-child {
    border-radius: 0 0 0 12px;
}

.premium-table tbody tr:last-child td:last-child {
    border-radius: 0 0 12px 0;
}

/* Status Badge */
.status-badge {
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.status-badge.status-active,
.status-badge.status-open,
.status-badge.status-approved {
    background: rgba(40, 167, 69, 0.15);
    color: #155724;
    border: 1px solid rgba(40, 167, 69, 0.3);
}

.status-badge.status-pending,
.status-badge.status-review {
    background: rgba(255, 193, 7, 0.15);
    color: #856404;
    border: 1px solid rgba(255, 193, 7, 0.3);
}

.status-badge.status-closed,
.status-badge.status-terminated,
.status-badge.status-suspended {
    background: rgba(220, 53, 69, 0.15);
    color: #721c24;
    border: 1px solid rgba(220, 53, 69, 0.3);
}

.status-badge.status-completed {
    background: rgba(23, 162, 184, 0.15);
    color: #0c5460;
    border: 1px solid rgba(23, 162, 184, 0.3);
}

/* Content Wrapper */
.content-wrapper {
    padding: 0;
}

.content-header {
    margin-bottom: 30px;
}

.content-body {
    background: transparent;
}

/* Form Styling */
.form-control:focus,
.form-select:focus {
    border-color: var(--royal-blue);
    box-shadow: 0 0 0 0.2rem rgba(36, 63, 129, 0.15);
}

.form-control,
.form-select {
    border-radius: 10px;
    border: 1px solid #dee2e6;
    padding: 12px 16px;
    transition: all 0.2s ease;
}

.form-control:hover,
.form-select:hover {
    border-color: var(--royal-blue-light);
}

/* Button Styling */
.btn {
    border-radius: 10px;
    font-weight: 600;
    padding: 10px 20px;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--light-gold) 100%);
    border: none;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-gold-dark) 0%, var(--primary-gold) 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(129, 110, 36, 0.3);
}

.btn-outline-primary {
    border-color: var(--primary-gold);
    color: var(--primary-gold);
}

.btn-outline-primary:hover {
    background: var(--primary-gold-dark);
    border-color: var(--primary-gold-dark);
    color: white;
}

/* Modal Styling */
.modal-content {
    border: none;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(36, 63, 129, 0.2);
}

.modal-header {
    background: linear-gradient(135deg, var(--royal-blue) 0%, var(--royal-blue-light) 100%);
    color: white;
    border-radius: 16px 16px 0 0;
    padding: 20px 24px;
    border: none;
}

.modal-header .btn-close {
    filter: brightness(0) invert(1);
}

/* Filter Section */
.filter-section {
    background: white;
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(36, 63, 129, 0.08);
    margin-bottom: 24px;
}

/* Section Title */
.section-title {
    color: var(--royal-blue);
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--light-gold);
}

/* Stats Card */
.stats-card {
    border: none;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(36, 63, 129, 0.12);
    transition: all 0.3s ease;
    overflow: hidden;
}

.stats-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(36, 63, 129, 0.18);
}

/* Input Group */
.input-group-text {
    /* background: var(--royal-blue); */
    color: white;
    border: none;
    border-radius: 10px 0 0 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .page-header-card {
        padding: 20px;
    }

    .header-icon-wrapper {
        width: 56px;
        height: 56px;
    }

    .header-icon-wrapper i {
        font-size: 24px;
    }

    .page-title {
        font-size: 1.5rem;
    }

    .premium-card .card-header,
    .premium-card .card-body {
        padding: 16px;
    }

    .premium-table thead th,
    .premium-table tbody td {
        padding: 12px;
        font-size: 0.9rem;
    }
}