/* Custom Modern Design - Baseline Driver Training Theme */
/* Light theme with #0D2B3F accent */

@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@400;500;600;700&display=swap');

/* ----------------------------
   COLOR VARIABLES (ALL)
   ---------------------------- */
:root {
    /* BRAND BLUE */
    --brand-50: #e6f0f5;
    --brand-100: #cce1eb;
    --brand-200: #99c3d7;
    --brand-300: #66a5c3;
    --brand-400: #3387af;
    --brand-500: #0D2B3F; /* PRIMARY */
    --brand-600: #0a2232;
    --brand-700: #081a26;
    --brand-800: #051119;
    --brand-900: #03090d;
    /* NEUTRALS */
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-900: #111827;
    /* ACCENT */
    --green-500: #22c55e;
}

/* Apply Rajdhani font globally */
body, html {
    font-family: 'Rajdhani', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--gray-50);
    color: var(--gray-700);
}

.btn:focus,
.btn:active:focus,
.btn-link.nav-link:focus,
.form-control:focus,
.form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem var(--brand-700);
}

/* Additional global light theme styles */
h1, h2, h3, h4, h5, h6 {
    color: var(--gray-900);
}

a {
    color: var(--brand-500);
    text-decoration: none;
}

    a:hover {
        color: var(--brand-600);
    }

    a:focus {
        outline: 2px solid var(--brand-500);
        outline-offset: 2px;
    }

    a:active {
        color: var(--brand-700);
    }

.navbar {
    background: var(--brand-500);
}

/* Form controls */
.form-control, .form-select {
    background-color: var(--white);
    border: 1px solid var(--gray-200);
    color: var(--gray-700);
}

    .form-control:focus, .form-select:focus {
        background-color: var(--white);
        border-color: var(--brand-500);
        color: var(--gray-700);
        box-shadow: 0 0 0 0.2rem rgba(13, 43, 63, 0.25);
        outline: none;
    }

    .form-control:active, .form-select:active {
        border-color: var(--brand-600);
    }

    .form-control::placeholder {
        color: #9ca3af;
    }

.form-label {
    color: var(--gray-700);
    font-weight: 500;
}

/* Modal light theme */
.modal-content {
    background-color: var(--white);
    border: 1px solid var(--gray-200);
}

.modal-header {
    border-bottom: 1px solid var(--gray-200);
}

.modal-footer {
    border-top: 1px solid var(--gray-200);
}

.modal-title {
    color: var(--gray-900);
}

/* Dropdown menu */
.dropdown-menu {
    background-color: var(--white);
    border: 1px solid var(--gray-200);
}

.dropdown-item {
    color: var(--gray-700);
}

    .dropdown-item:hover {
        background-color: var(--gray-100);
        color: var(--brand-500);
    }

    .dropdown-item:focus {
        outline: 2px solid var(--brand-500);
        outline-offset: 2px;
    }

/* Pagination */
.pagination .page-link {
    background-color: var(--white);
    border-color: var(--gray-200);
    color: var(--gray-700);
}

    .pagination .page-link:hover {
        background-color: var(--gray-100);
        border-color: var(--brand-500);
        color: var(--brand-500);
    }

    .pagination .page-link:focus {
        outline: 2px solid var(--brand-500);
        outline-offset: 2px;
    }

    .pagination .page-link:active {
        background-color: var(--brand-600);
        border-color: var(--brand-600);
        color: var(--white);
    }

.pagination .page-item.active .page-link {
    background-color: var(--brand-500);
    border-color: var(--brand-500);
    color: var(--white);
}

/* Sidebar styling - Light Theme with #0D2B3F Accents */
.sidebar {
    background: var(--white) !important;
    border-right: 1px solid var(--gray-200);
    color: var(--gray-700) !important;
    display: flex;
    flex-direction: column;
    height: 100vh;
    position: fixed;
    width: 250px;
    overflow: hidden;
}

.sidebar-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.sidebar-nav {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 8px 0;
}

    .sidebar-nav::-webkit-scrollbar {
        width: 6px;
    }

    .sidebar-nav::-webkit-scrollbar-track {
        background: transparent;
    }

    .sidebar-nav::-webkit-scrollbar-thumb {
        background: var(--gray-200);
        border-radius: 3px;
    }

        .sidebar-nav::-webkit-scrollbar-thumb:hover {
            background: var(--gray-300);
        }

.sidebar-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 16px;
    margin: 3px 8px;
    color: var(--gray-500);
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 14px;
    font-weight: 500;
    border-radius: 8px;
}

    .sidebar-item:hover {
        background: var(--gray-50);
        color: var(--gray-700);
    }

    .sidebar-item:focus {
        outline: 2px solid var(--brand-500);
        outline-offset: 2px;
    }

    .sidebar-item.active {
        background: var(--brand-500);
        color: var(--white);
    }

        .sidebar-item.active i {
            color: var(--white);
        }

    .sidebar-item i {
        width: 20px;
        text-align: center;
        font-size: 16px;
    }

.sidebar-divider {
    padding: 16px 20px 10px 20px;
    font-size: 11px;
    font-weight: 600;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sidebar-footer {
    border-top: 1px solid var(--gray-200);
    padding: 8px 0;
    padding-bottom: 100px;
    flex-shrink: 0;
    background: var(--white);
}

    .sidebar-footer .sidebar-item {
        padding: 8px 16px;
        margin: 3px 8px;
    }

.sidebar-user {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    margin: 3px 8px;
    border-radius: 8px;
    transition: all 0.2s ease;
}

    .sidebar-user:hover {
        background: var(--gray-50);
    }

.sidebar-user-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--gray-200);
    color: var(--gray-500);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 600;
    flex-shrink: 0;
}

.sidebar-user-info {
    flex: 1;
    min-width: 0;
}

.sidebar-user-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-900);
    line-height: 1.3;
    margin-bottom: 1px;
}

.sidebar-user-role {
    font-size: 12px;
    color: #9ca3af;
    line-height: 1.2;
}

/* Stat cards - light theme */
.stat-card {
    background: var(--white);
    border-radius: 12px;
    padding: 24px;
    border: 1px solid var(--gray-200);
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.stat-card-icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .stat-card-icon-wrapper.blue {
        background: rgba(13, 43, 63, 0.1);
        color: var(--brand-500);
    }

    .stat-card-icon-wrapper.green {
        background: #d1fae5;
        color: #10b981;
    }

    .stat-card-icon-wrapper.yellow {
        background: #fef3c7;
        color: #f59e0b;
    }

    .stat-card-icon-wrapper.cyan {
        background: #cffafe;
        color: #06b6d4;
    }

.stat-card-content h6 {
    font-size: 11px;
    font-weight: 500;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.stat-card-content h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--gray-900);
    margin: 0;
}

/* Recent Activity - light theme */
.activity-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--gray-100);
}

    .activity-item:last-child {
        border-bottom: none;
    }

.activity-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .activity-icon.success {
        background: #d1fae5;
        color: #10b981;
    }

    .activity-icon.warning {
        background: #fef3c7;
        color: #f59e0b;
    }

    .activity-icon.info {
        background: rgba(13, 43, 63, 0.1);
        color: var(--brand-500);
    }

.activity-content h6 {
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-900);
    margin: 0 0 4px 0;
}

.activity-content p {
    font-size: 12px;
    color: var(--gray-500);
    margin: 0;
}

/* Quick Links - colored boxes */
.quick-link-box {
    padding: 16px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: all 0.2s;
    margin-bottom: 12px;
}

    .quick-link-box:last-child {
        margin-bottom: 0;
    }

    .quick-link-box.blue {
        background: rgba(13, 43, 63, 0.1);
        color: var(--brand-500);
    }

        .quick-link-box.blue:hover {
            background: rgba(13, 43, 63, 0.15);
        }

        .quick-link-box.blue:focus {
            outline: 2px solid var(--brand-500);
            outline-offset: 2px;
        }

    .quick-link-box.green {
        background: #f0fdf4;
        color: #10b981;
    }

        .quick-link-box.green:hover {
            background: #d1fae5;
        }

    .quick-link-box.cyan {
        background: #ecfeff;
        color: #06b6d4;
    }

        .quick-link-box.cyan:hover {
            background: #cffafe;
        }

    .quick-link-box i {
        font-size: 20px;
    }

    .quick-link-box span {
        font-size: 14px;
        font-weight: 500;
    }

/* Card headers */
.card-header {
    background: var(--white) !important;
    border-bottom: 1px solid var(--gray-200);
    padding: 16px 24px;
}

    .card-header h5 {
        font-size: 16px;
        font-weight: 600;
        color: var(--gray-900);
        margin: 0;
    }

/* General card styling */
.card {
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    box-shadow: none !important;
    background: var(--white);
}

.card-body {
    padding: 24px;
    color: var(--gray-700);
}

/* Main content background */
.main-background {
    background-color: var(--gray-50) !important;
}

/* Tables */
.table {
    font-size: 14px;
    color: var(--gray-700);
}

    .table thead th {
        font-size: 11px;
        font-weight: 600;
        color: var(--gray-500);
        text-transform: uppercase;
        letter-spacing: 0.5px;
        border-bottom: 1px solid var(--gray-200);
        padding: 12px 16px;
        background: var(--white);
    }

    .table tbody td {
        padding: 12px 16px;
        color: var(--gray-700);
        border-bottom: 1px solid var(--gray-100);
        background: var(--white);
    }

/* Buttons - #0D2B3F theme */
.btn {
    font-weight: 500;
    transition: all 0.2s ease;
}

.btn-primary {
    background: var(--brand-500);
    border-color: var(--brand-500);
    color: var(--white);
    padding: 8px 16px;
    font-size: 14px;
}

    .btn-primary:focus {
        background: var(--brand-500);
        border-color: var(--brand-500);
        outline: 2px solid var(--brand-500);
        outline-offset: 2px;
        box-shadow: 0 0 0 0.2rem rgba(13, 43, 63, 0.25);
    }

    .btn-primary:active:focus {
        background: var(--brand-600);
        border-color: var(--brand-600);
        outline: 2px solid var(--brand-600);
        outline-offset: 2px;
        box-shadow: 0 0 0 0.2rem rgba(13, 43, 63, 0.35);
    }
    .btn-primary:hover {
        background: var(--brand-600);
        border-color: var(--brand-600);
        color: var(--white);
    }

    .btn-primary:active {
        background: var(--brand-700);
        border-color: var(--brand-700);
    }

.btn-sm {
    padding: 0.375rem 0.75rem;
    font-size: 14px;
    line-height: 1.5;
    border-width: 1px;
}

/* Outline buttons - #0D2B3F theme */
.btn-outline-primary {
    background: transparent;
    border: 1px solid var(--brand-500);
    color: var(--brand-500);
    padding: 0.375rem 0.75rem;
    font-size: 14px;
    line-height: 1.5;
}

    .btn-outline-primary:hover {
        background: var(--brand-500);
        border-color: var(--brand-500);
        color: var(--white);
    }

    .btn-outline-primary:focus {
        outline: 2px solid var(--brand-500);
        outline-offset: 2px;
    }

    .btn-outline-primary:active {
        background: var(--brand-600);
        border-color: var(--brand-600);
        color: var(--white);
    }

.btn-outline-danger {
    background: transparent;
    border: 1px solid #ef4444;
    color: #ef4444;
    padding: 0.375rem 0.75rem;
    font-size: 14px;
    line-height: 1.5;
}

    .btn-outline-danger:hover {
        background: #fee2e2;
        border-color: #dc2626;
        color: #b91c1c;
    }

.btn-outline-warning {
    background: transparent;
    border: 1px solid #f59e0b;
    color: #f59e0b;
    padding: 0.375rem 0.75rem;
    font-size: 14px;
    line-height: 1.5;
}

    .btn-outline-warning:hover {
        background: #fef3c7;
        border-color: #d97706;
        color: #b45309;
    }

.btn-outline-success {
    background: transparent;
    border: 1px solid #10b981;
    color: #10b981;
    padding: 0.375rem 0.75rem;
    font-size: 14px;
    line-height: 1.5;
}

    .btn-outline-success:hover {
        background: #d1fae5;
        border-color: #059669;
        color: #047857;
    }

.btn-success {
    background: var(--brand-500);
    border-color: var(--brand-500);
    color: var(--white);
    padding: 0.375rem 0.75rem;
    font-size: 14px;
    line-height: 1.5;
}

    .btn-success:hover {
        background: var(--brand-600);
        border-color: var(--brand-600);
        color: var(--white);
    }

    .btn-success:focus {
        outline: 2px solid var(--brand-500);
        outline-offset: 2px;
    }

    .btn-success:active {
        background: var(--brand-700);
        border-color: var(--brand-700);
        color: var(--white);
    }

.btn-outline-secondary {
    background: transparent;
    border: 1px solid #9ca3af;
    color: var(--gray-500);
    padding: 0.375rem 0.75rem;
    font-size: 14px;
    line-height: 1.5;
}

    .btn-outline-secondary:hover {
        background: var(--gray-100);
        border-color: var(--gray-500);
        color: var(--gray-600);
    }

    .btn-outline-secondary:focus {
        outline: 2px solid var(--brand-500);
        outline-offset: 2px;
    }

    .btn-outline-secondary:active {
        background: var(--gray-200);
        border-color: var(--gray-300);
        color: var(--gray-700);
    }

    .btn-outline-secondary.btn-sm,
    .btn-outline-primary.btn-sm,
    .btn-outline-danger.btn-sm,
    .btn-outline-warning.btn-sm,
    .btn-outline-success.btn-sm {
        padding: 0.375rem 0.75rem;
        font-size: 14px;
        line-height: 1.5;
        border-width: 1px;
    }

/* Badges - Light theme with #0D2B3F */
.badge {
    font-size: 11px;
    font-weight: 500;
    padding: 4px 10px;
    border-radius: 12px;
    border: 1px solid transparent;
}

    .badge.bg-success {
        background: #d1fae5 !important;
        color: #059669 !important;
        border-color: #a7f3d0 !important;
    }

    .badge.bg-primary {
        background: rgba(13, 43, 63, 0.1) !important;
        color: var(--brand-500) !important;
        border-color: rgba(13, 43, 63, 0.2) !important;
    }

    .badge.bg-danger {
        background: #fee2e2 !important;
        color: #dc2626 !important;
        border-color: #fecaca !important;
    }

    .badge.bg-warning {
        background: #fef3c7 !important;
        color: #d97706 !important;
        border-color: #fde68a !important;
    }

    .badge.bg-secondary {
        background: var(--gray-100) !important;
        color: var(--gray-500) !important;
        border-color: var(--gray-200) !important;
    }

    .badge.bg-info {
        background: #e0f2fe !important;
        color: #0284c7 !important;
        border-color: #bae6fd !important;
    }

    .badge.text-dark {
        color: var(--brand-500) !important;
    }

/* User avatar at bottom */
.user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gray-200);
    color: var(--gray-500);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
}

/* Currency Switcher */
.currency-switcher {
    background: var(--gray-100);
    padding: 4px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.currency-label {
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-500);
    padding: 0 8px;
}

.currency-btn {
    background: transparent;
    border: none;
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-500);
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

    .currency-btn:hover {
        color: var(--gray-700);
    }

    .currency-btn:focus {
        outline: 2px solid var(--brand-500);
        outline-offset: 2px;
    }

    .currency-btn.active {
        background: var(--white);
        color: var(--brand-500);
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    }

/* Pricing Cards - Light Theme with #0D2B3F */
.pricing-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    padding: 32px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    position: relative;
}

    .pricing-card:hover {
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        transform: translateY(-4px);
    }

.pricing-card-highlighted {
    background: linear-gradient(135deg, var(--brand-500) 0%, var(--brand-600) 100%);
    border: none;
    box-shadow: 0 10px 30px rgba(13, 43, 63, 0.3);
    color: var(--white);
}

    .pricing-card-highlighted:hover {
        box-shadow: 0 15px 40px rgba(13, 43, 63, 0.4);
        transform: translateY(-4px);
    }

.pricing-badge {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 6px 12px;
    border-radius: 20px;
    margin-bottom: 20px;
    display: inline-block;
}

.pricing-header {
    margin-bottom: 24px;
}

.pricing-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.pricing-card-highlighted .pricing-title {
    color: var(--white);
}

.pricing-subtitle {
    font-size: 13px;
    color: var(--gray-500);
    margin: 0;
}

.pricing-card-highlighted .pricing-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.pricing-price {
    margin-bottom: 32px;
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.pricing-currency {
    font-size: 20px;
    font-weight: 600;
    color: var(--gray-900);
}

.pricing-card-highlighted .pricing-currency {
    color: var(--white);
}

.pricing-amount {
    font-size: 48px;
    font-weight: 800;
    color: var(--gray-900);
    line-height: 1;
}

.pricing-card-highlighted .pricing-amount {
    color: var(--white);
}

.pricing-interval {
    font-size: 16px;
    color: var(--gray-500);
    margin-left: 4px;
}

.pricing-card-highlighted .pricing-interval {
    color: rgba(255, 255, 255, 0.9);
}

.pricing-features {
    margin-bottom: 32px;
    flex-grow: 1;
}

    .pricing-features ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .pricing-features li {
        padding: 12px 0;
        display: flex;
        align-items: center;
        gap: 12px;
        font-size: 14px;
        color: var(--gray-700);
        border-bottom: 1px solid var(--gray-100);
    }

.pricing-card-highlighted .pricing-features li {
    color: rgba(255, 255, 255, 0.95);
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li i {
    color: #10b981;
    font-size: 16px;
}

.pricing-card-highlighted .pricing-features li i {
    color: var(--white);
}

.pricing-footer {
    margin-top: auto;
}

.pricing-card .btn {
    padding: 14px 24px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 8px;
}

.pricing-card-highlighted .btn-light {
    background: var(--white);
    color: var(--brand-500);
    border: none;
}

    .pricing-card-highlighted .btn-light:hover {
        background: var(--gray-100);
        color: var(--brand-600);
    }

    .pricing-card-highlighted .btn-light:focus {
        outline: 2px solid var(--brand-500);
        outline-offset: 2px;
    }

/* Accordion - Light Theme */
.accordion-item {
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    margin-bottom: 12px;
    overflow: hidden;
    background: var(--white);
}

    .accordion-item:first-child {
        border-top: 1px solid var(--gray-200);
    }

.accordion-button {
    background: var(--white);
    color: var(--gray-900);
    font-weight: 500;
    font-size: 14px;
    padding: 16px 20px;
    border: none;
}

    .accordion-button:not(.collapsed) {
        background: var(--gray-50);
        color: var(--brand-500);
        box-shadow: none;
    }

    .accordion-button:focus {
        outline: 2px solid var(--brand-500);
        outline-offset: 2px;
    }

    .accordion-button:active {
        background: var(--brand-600);
        color: var(--white);
    }

    .accordion-button::after {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%236b7280'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    }

    .accordion-button:not(.collapsed)::after {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230D2B3F'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    }

.accordion-body {
    padding: 20px;
    background: var(--white);
    color: var(--gray-700);
}

/* Login & SignUp Pages - Light Theme */
.main-content-login {
    background-color: var(--gray-50) !important;
}

/* Login page split layout */
.bg-primary.opacity-75 {
    background: linear-gradient(135deg, rgba(13, 43, 63, 0.9) 0%, rgba(10, 32, 48, 0.9) 100%) !important;
    opacity: 1 !important;
}

.bg-white {
    background: var(--white) !important;
}

/* Login form styling */
.vh-100 h3 {
    color: var(--gray-900);
    font-weight: 700;
}

/* Form check for remember me */
.form-check-input {
    background-color: var(--white);
    border-color: var(--gray-300);
}

    .form-check-input:checked {
        background-color: var(--brand-500);
        border-color: var(--brand-500);
    }

    .form-check-input:focus {
        border-color: var(--brand-500);
        box-shadow: 0 0 0 0.2rem rgba(13, 43, 63, 0.25);
    }

.form-check-label {
    color: var(--gray-700);
}

/* Links on login/signup */
.text-center a, .card-footer a {
    color: var(--brand-500);
    text-decoration: none;
}

    .text-center a:hover, .card-footer a:hover {
        color: var(--brand-600);
        text-decoration: underline;
    }

    .text-center a:focus, .card-footer a:focus {
        outline: 2px solid var(--brand-500);
        outline-offset: 2px;
    }

/* SignUp card specific */
.card-header.bg-primary {
    background: linear-gradient(135deg, var(--brand-500) 0%, var(--brand-600) 100%) !important;
    color: var(--white) !important;
    border-bottom: 1px solid var(--gray-200);
}

.card-footer.bg-light {
    background: var(--gray-50) !important;
    border-top: 1px solid var(--gray-200);
    color: var(--gray-700);
}

.card-footer small {
    color: var(--gray-500);
}

/* Validation error messages */
.text-danger {
    color: #dc2626 !important;
}

span.text-danger {
    font-size: 12px;
    margin-top: 4px;
    display: block;
}
