:root {
    --primary-color: #0066CC;
    --primary-dark: #0052A3;
    --primary-light: #E6F0FA;
    --secondary-color: #1A1A2E;
    --accent-color: #00A86B;
    --success-color: #10B981;
    --warning-color: #F59E0B;
    --error-color: #EF4444;
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-400: #9CA3AF;
    --gray-500: #6B7280;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --gray-800: #1F2937;
    --gray-900: #111827;
    --border-radius: 0.75rem;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--gray-50);
    color: var(--gray-800);
    line-height: 1.6;
}

.font-mono {
    font-family: 'Roboto Mono', monospace;
}

/* Navbar */
.navbar {
    background: white;
    box-shadow: var(--shadow-sm);
    padding: 1rem 1.5rem;
}

.navbar-brand {
    font-weight: 600;
    font-size: 1.25rem;
    color: var(--primary-color) !important;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.navbar-brand svg {
    width: 24px;
    height: 24px;
}

.nav-link {
    color: var(--gray-600) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    border-radius: 0.5rem;
    transition: all 0.2s;
}

.nav-link:hover {
    color: var(--primary-color) !important;
    background-color: var(--primary-light);
}

.nav-link.active {
    color: var(--primary-color) !important;
    background-color: var(--primary-light);
}

/* Buttons */
.btn {
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    transition: all 0.15s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    transform: scale(1);
}

.btn:active {
    transform: scale(0.92);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15);
}

.btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.3);
}

.btn.btn-clicked {
    animation: btnPulse 0.3s ease-out;
}

@keyframes btnPulse {
    0% { transform: scale(1); }
    50% { transform: scale(0.9); }
    100% { transform: scale(1); }
}

.btn.btn-loading,
a.link-loading,
.nav-link.link-loading,
.dropdown-item.link-loading {
    pointer-events: none;
    opacity: 0.7;
    cursor: wait !important;
}

.btn.btn-loading::after,
a.link-loading::after,
.nav-link.link-loading::after,
.dropdown-item.link-loading::after {
    content: '';
    display: inline-block;
    width: 14px;
    height: 14px;
    border: 2px solid transparent;
    border-top-color: currentColor;
    border-right-color: currentColor;
    border-radius: 50%;
    animation: btnSpin 0.6s linear infinite;
    margin-left: 0.5rem;
    flex-shrink: 0;
    vertical-align: middle;
}

/* Keyframes for spinner rotation - only used by ::after pseudo-element */
@keyframes btnSpin {
    to { transform: rotate(360deg); }
}

.list-group-item.link-loading,
.card.link-loading {
    pointer-events: none;
    opacity: 0.7;
    position: relative;
}

.list-group-item.link-loading::before,
.card.link-loading::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 1rem;
    width: 16px;
    height: 16px;
    margin-top: -8px;
    border: 2px solid transparent;
    border-top-color: var(--primary-color);
    border-right-color: var(--primary-color);
    border-radius: 50%;
    animation: btnSpin 0.6s linear infinite;
}

tr.row-loading {
    pointer-events: none;
    opacity: 0.6;
    background-color: var(--gray-100) !important;
}

tr.row-loading td:first-child::before {
    content: '';
    display: inline-block;
    width: 14px;
    height: 14px;
    border: 2px solid transparent;
    border-top-color: var(--primary-color);
    border-right-color: var(--primary-color);
    border-radius: 50%;
    animation: btnSpin 0.6s linear infinite;
    margin-right: 0.5rem;
    vertical-align: middle;
}

/* Page Loading Bar - top of screen */
.page-loading-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color), var(--primary-color));
    background-size: 200% 100%;
    animation: pageLoadingSlide 1.5s linear infinite;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.2s;
    pointer-events: none;
}

.page-loading-bar.active {
    opacity: 1;
}

@keyframes pageLoadingSlide {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Loading overlay for modals/screens */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s;
}

.loading-overlay.active {
    opacity: 1;
    visibility: visible;
}

.loading-spinner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.loading-spinner .spinner {
    width: 48px;
    height: 48px;
    border: 4px solid var(--gray-200);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: btnSpin 0.8s linear infinite;
}

.loading-spinner .loading-text {
    font-weight: 500;
    color: var(--gray-600);
}

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

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

.btn-secondary {
    background-color: white;
    border: 2px solid var(--gray-300);
    color: var(--gray-700);
}

.btn-secondary:hover {
    border-color: var(--gray-400);
    background-color: var(--gray-50);
    color: var(--gray-800);
}

.btn-success {
    background-color: var(--success-color);
    border-color: var(--success-color);
}

.btn-danger {
    background-color: var(--error-color);
    border-color: var(--error-color);
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

/* Quick Resource Category Buttons */
.btn-category {
    font-weight: 600;
    padding: 1rem 1.5rem;
    border-radius: var(--border-radius);
    transition: all 0.2s ease;
    color: white !important;
    border: none;
    box-shadow: var(--shadow-sm);
    text-decoration: none;
}

.btn-category:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: white !important;
}

.btn-category:active {
    transform: translateY(0);
}

.btn-category svg {
    stroke: white;
}

.btn-category-red {
    background: linear-gradient(135deg, #EF4444 0%, #DC2626 100%);
}

.btn-category-red:hover {
    background: linear-gradient(135deg, #DC2626 0%, #B91C1C 100%);
}

.btn-category-green {
    background: linear-gradient(135deg, #22C55E 0%, #16A34A 100%);
}

.btn-category-green:hover {
    background: linear-gradient(135deg, #16A34A 0%, #15803D 100%);
}

.btn-category-purple {
    background: linear-gradient(135deg, #A855F7 0%, #9333EA 100%);
}

.btn-category-purple:hover {
    background: linear-gradient(135deg, #9333EA 0%, #7E22CE 100%);
}

.btn-category-orange {
    background: linear-gradient(135deg, #F97316 0%, #EA580C 100%);
}

.btn-category-orange:hover {
    background: linear-gradient(135deg, #EA580C 0%, #C2410C 100%);
}

.btn-category-blue {
    background: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%);
}

.btn-category-blue:hover {
    background: linear-gradient(135deg, #2563EB 0%, #1D4ED8 100%);
}

/* Quick Resources Dropdown */
.resource-dropdown {
    position: relative;
    display: inline-block;
}

.resource-dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 250px;
    background: transparent;
    z-index: 100;
    padding-top: 8px;
}

.resource-dropdown-content-inner {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    overflow-y: auto;
    max-height: 400px;
}

.resource-dropdown:hover .resource-dropdown-content,
.resource-dropdown:focus-within .resource-dropdown-content {
    display: block;
}

.resource-dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: var(--gray-700);
    text-decoration: none;
    transition: background 0.15s;
    border-bottom: 1px solid var(--gray-100);
}

.resource-dropdown-item:last-child {
    border-bottom: none;
}

.resource-dropdown-item:hover {
    background-color: var(--gray-50);
    color: var(--gray-900);
}

.resource-dropdown-item svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.resource-dropdown-empty {
    padding: 1rem;
    color: var(--gray-500);
    text-align: center;
    font-style: italic;
}

/* Lender item with AE contact */
.lender-item {
    border-bottom: 1px solid var(--gray-100);
}

.lender-item:last-child {
    border-bottom: none;
}

.lender-item .resource-dropdown-item {
    border-bottom: none;
}

.ae-contact-line {
    padding: 0.25rem 1rem 0.75rem 2.75rem;
    font-size: 0.8rem;
    color: var(--gray-600);
    background: var(--gray-50);
}

.ae-contact-line .ae-label {
    font-weight: 600;
    color: var(--gray-700);
}

.ae-contact-line a {
    color: var(--primary);
    text-decoration: none;
}

.ae-contact-line a:hover {
    text-decoration: underline;
}

/* Cards */
.card {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
}

.card-body {
    padding: 1.5rem;
}

.card-hover:hover {
    box-shadow: var(--shadow-md);
    transition: box-shadow 0.2s;
}

/* Stats Cards */
.stat-card {
    padding: 1.5rem;
    border-radius: var(--border-radius);
    background: white;
    border: 1px solid var(--gray-200);
}

.stat-card .stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.stat-card .stat-value {
    font-size: clamp(1.25rem, 4vw, 1.75rem);
    font-weight: 700;
    color: var(--gray-900);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.stat-card .stat-label {
    font-size: 0.875rem;
    color: var(--gray-500);
    font-weight: 500;
}

/* Form Elements */
.form-control, .form-select {
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    border: 1px solid var(--gray-300);
    font-size: 1rem;
    transition: all 0.2s;
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.form-label {
    font-weight: 500;
    color: var(--gray-700);
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.form-text {
    font-size: 0.75rem;
    color: var(--gray-500);
}

/* Badges */
.badge {
    padding: 0.375rem 0.75rem;
    border-radius: 9999px;
    font-weight: 500;
    font-size: 0.75rem;
}

.badge-active {
    background-color: #D1FAE5;
    color: #065F46;
}

.badge-expired {
    background-color: var(--gray-100);
    color: var(--gray-600);
}

.badge-used {
    background-color: #DBEAFE;
    color: #1E40AF;
}

.badge-revoked {
    background-color: #FEE2E2;
    color: #991B1B;
}

/* Tables */
.table {
    background: white;
}

.table thead th {
    background-color: var(--gray-50);
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--gray-500);
    border-bottom: 1px solid var(--gray-200);
    padding: 1rem;
}

.table tbody td {
    padding: 1rem;
    vertical-align: middle;
    border-bottom: 1px solid var(--gray-100);
}

.table tbody tr:hover {
    background-color: var(--gray-50);
}

/* Upload Zone */
.upload-zone {
    border: 2px dashed var(--gray-300);
    border-radius: var(--border-radius);
    padding: 3rem 2rem;
    text-align: center;
    background: var(--gray-50);
    transition: all 0.3s;
    cursor: pointer;
}

.upload-zone:hover {
    border-color: var(--primary-color);
    background: var(--primary-light);
}

.upload-zone.drag-over {
    border-color: var(--primary-color);
    background: var(--primary-light);
    transform: scale(1.02);
}

.upload-zone .upload-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
    color: var(--gray-400);
}

.upload-zone h4 {
    color: var(--gray-700);
    margin-bottom: 0.5rem;
}

.upload-zone p {
    color: var(--gray-500);
    font-size: 0.875rem;
}

/* File List */
.file-item {
    display: flex;
    align-items: center;
    padding: 1rem;
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: 0.5rem;
    margin-bottom: 0.5rem;
}

.file-item .file-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-light);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    color: var(--primary-color);
}

.file-item .file-info {
    flex: 1;
    min-width: 0;
}

.file-item .file-name {
    font-weight: 500;
    color: var(--gray-800);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: block;
}

.file-item .file-size {
    font-size: 0.75rem;
    color: var(--gray-500);
}

.file-item .file-remove {
    color: var(--gray-400);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 0.25rem;
    transition: all 0.2s;
}

.file-item .file-remove:hover {
    color: var(--error-color);
    background: #FEE2E2;
}

/* Progress Bar */
.progress {
    height: 8px;
    border-radius: 9999px;
    background: var(--gray-200);
}

.progress-bar {
    background: var(--primary-color);
    border-radius: 9999px;
}

/* Modal */
.modal-content {
    border: none;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
}

.modal-header {
    border-bottom: 1px solid var(--gray-200);
    padding: 1.5rem;
}

.modal-body {
    padding: 1.5rem;
}

.modal-footer {
    border-top: 1px solid var(--gray-200);
    padding: 1.5rem;
}

/* Security Badges */
.security-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--gray-600);
}

.security-badge svg {
    width: 14px;
    height: 14px;
    color: var(--success-color);
}

/* Landing Page */
.landing-hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.landing-hero .hero-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.landing-hero .hero-text {
    text-align: center;
    max-width: 600px;
}

.landing-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.landing-hero p {
    font-size: 1.25rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
}

/* Dark Landing Page */
.landing-hero-dark {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    background: linear-gradient(135deg, #0a1628 0%, #1a2a4a 50%, #0d1b30 100%);
}

.landing-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.landing-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background: transparent;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #ffffff;
    font-weight: 600;
    font-size: 1.1rem;
}

.nav-logo {
    height: 32px;
    width: auto;
}

.login-btn-white {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.5rem;
    background: #eab308;
    border: none;
    border-radius: 6px;
    color: #0a192f;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

.login-btn-white:hover {
    background: #facc15;
    color: #0a192f;
}

.login-btn-white svg {
    width: 18px;
    height: 18px;
}

.hero-section {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

/* Elegant Centered Landing Layout */
.hero-content-centered {
    text-align: center;
    max-width: 900px;
    width: 100%;
}

.hero-title {
    font-size: 2.7rem;
    font-weight: 800;
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.hero-subtitle-text {
    color: #94a3b8;
}

.hero-subtitle {
    color: #94a3b8;
    font-size: 1.25rem;
    margin-bottom: 3rem;
}

.feature-cards-row {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2.5rem;
}

.feature-card {
    text-align: center;
    padding: 1.5rem;
}

.feature-card h5 {
    color: #ffffff;
    font-weight: 700;
    font-size: 1rem;
    margin: 0;
    line-height: 1.4;
}

.feature-icon-gold {
    margin-bottom: 1rem;
}

.feature-icon-gold svg {
    width: 32px;
    height: 32px;
    color: #eab308;
}

.hero-mascot {
    margin-bottom: 1.5rem;
}

.hero-mascot img {
    max-width: 180px;
    height: auto;
    border-radius: 16px;
}

.cta-wrapper {
    margin-top: 1rem;
}

.btn-get-started {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background-color: #2563eb;
    color: #ffffff;
    padding: 1rem 3rem;
    border-radius: 50px;
    font-size: 1.25rem;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.4);
    transition: all 0.3s ease;
}

.btn-get-started:hover {
    background-color: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.5);
    color: #ffffff;
}

.btn-get-started svg {
    width: 20px;
    height: 20px;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .feature-cards-row {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .hero-mascot img {
        max-width: 140px;
    }
    
    .btn-get-started {
        padding: 0.875rem 2rem;
        font-size: 1.1rem;
    }
}

.hero-content-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    max-width: 1100px;
    width: 100%;
}

.hero-text-content {
    flex: 1;
    max-width: 550px;
}

.hero-headline {
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.gold-text {
    display: block;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 50%, #d4af37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.white-text {
    display: block;
    color: #ffffff;
}

.muted-text {
    display: block;
    color: #94a3b8;
}

.feature-emoji {
    font-size: 2.25rem;
    line-height: 1;
}

.hero-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.feature-icons {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    text-align: center;
}

.feature-icon-circle {
    width: 72px;
    height: 72px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(30, 41, 59, 0.9);
    font-size: 2rem;
}

.feature-icon-circle svg {
    width: 24px;
    height: 24px;
    color: #ffffff;
}

.feature-item span {
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    max-width: 120px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: #2563eb;
    color: #ffffff;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.4);
}

.cta-button:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.5);
    color: #ffffff;
}

.cta-button svg {
    width: 20px;
    height: 20px;
}

.hero-image {
    flex: 0 0 auto;
}

.hero-image img {
    max-width: 320px;
    height: auto;
    border-radius: 16px;
}

@media (max-width: 900px) {
    .hero-content-wrapper {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-text-content {
        max-width: 100%;
    }
    
    .hero-headline {
        font-size: 2rem;
    }
    
    .feature-icons {
        justify-content: center;
    }
    
    .hero-image {
        display: none;
    }
}

@media (max-width: 600px) {
    .landing-nav {
        padding: 1rem;
    }
    
    .nav-brand span {
        display: none;
    }
    
    .hero-headline {
        font-size: 1.75rem;
    }
    
    .feature-icons {
        gap: 1rem;
    }
    
    .feature-icon-circle {
        width: 48px;
        height: 48px;
    }
    
    .feature-item span {
        font-size: 0.75rem;
    }
}

/* Customer Upload Page */
.customer-page {
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8ed 100%);
    min-height: 100vh;
}

.customer-header {
    background: white;
    padding: 1rem 2rem;
    box-shadow: var(--shadow-sm);
}

.customer-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
}

.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

/* Success State */
.success-checkmark {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--success-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    animation: scaleIn 0.3s ease-out;
}

.success-checkmark svg {
    width: 40px;
    height: 40px;
    color: white;
}

@keyframes scaleIn {
    0% { transform: scale(0); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* Link Copy Box */
.link-copy-box {
    display: flex;
    align-items: stretch;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: 0.5rem;
    overflow: hidden;
}

.link-copy-box input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 0.75rem 1rem;
    font-family: 'Roboto Mono', monospace;
    font-size: 0.875rem;
    color: var(--gray-700);
}

.link-copy-box input:focus {
    outline: none;
}

.link-copy-box button {
    padding: 0.75rem 1.25rem;
    background: var(--primary-color);
    color: white;
    border: none;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s;
}

.link-copy-box button:hover {
    background: var(--primary-dark);
}

/* User Menu */
.user-menu {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.user-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gray-200);
}

.user-name {
    font-weight: 500;
    color: var(--gray-700);
}

/* Alerts */
.alert {
    border: none;
    border-radius: var(--border-radius);
    padding: 1rem 1.25rem;
}

.alert-success {
    background: #D1FAE5;
    color: #065F46;
}

.alert-danger {
    background: #FEE2E2;
    color: #991B1B;
}

.alert-warning {
    background: #FEF3C7;
    color: #92400E;
}

/* Footer */
.footer {
    background: white;
    border-top: 1px solid var(--gray-200);
    padding: 2rem;
    text-align: center;
    color: var(--gray-500);
    font-size: 0.875rem;
}

.footer a {
    color: var(--gray-600);
    text-decoration: none;
}

.footer a:hover {
    color: var(--primary-color);
}

/* Responsive */
@media (max-width: 768px) {
    .landing-hero h1 {
        font-size: 2rem;
    }
    
    .trust-indicators {
        flex-direction: column;
        align-items: center;
    }
    
    .stat-card {
        margin-bottom: 1rem;
    }
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--gray-500);
}

.empty-state svg {
    width: 64px;
    height: 64px;
    color: var(--gray-300);
    margin-bottom: 1rem;
}

.empty-state h4 {
    color: var(--gray-700);
    margin-bottom: 0.5rem;
}

/* Expiration countdown */
.expiration-warning {
    background: #FEF3C7;
    border: 1px solid #F59E0B;
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #92400E;
    font-size: 0.875rem;
}

.expiration-warning svg {
    flex-shrink: 0;
}

/* Upload Dropzone */
.upload-dropzone {
    border: 2px dashed var(--gray-300);
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    background: var(--gray-50);
}

.upload-dropzone:hover,
.upload-dropzone.dragover {
    border-color: var(--primary-color);
    background: var(--primary-light);
}

.upload-dropzone svg {
    width: 48px;
    height: 48px;
    color: var(--gray-400);
    margin-bottom: 1rem;
}

.upload-dropzone.dragover svg {
    color: var(--primary-color);
}

.upload-dropzone h5 {
    color: var(--gray-700);
    margin-bottom: 0.5rem;
}

/* Borrower Tabs - Loan Application */
.borrower-tabs .nav-link {
    background-color: var(--gray-100);
    color: var(--gray-700) !important;
    border: 1px solid var(--gray-300);
    border-radius: 0.5rem;
    padding: 0.5rem 1rem;
    margin-right: 0.5rem;
    font-weight: 500;
    font-size: 0.875rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s ease;
}

.borrower-tabs .nav-link:hover {
    background-color: var(--gray-200);
    border-color: var(--gray-400);
    color: var(--gray-800) !important;
}

.borrower-tabs .nav-link.active {
    background-color: var(--primary-color);
    color: white !important;
    border-color: var(--primary-color);
    font-weight: 600;
}

.borrower-tabs .nav-link.active svg {
    stroke: white;
}

.borrower-tabs .nav-link svg {
    width: 16px;
    height: 16px;
}

.borrower-tabs .nav-item {
    margin-bottom: 0.5rem;
    position: relative;
}

.remove-coborrower-btn {
    position: absolute;
    top: -6px;
    right: 2px;
    cursor: pointer;
    color: #dc3545;
    background: white;
    border-radius: 50%;
    line-height: 1;
    z-index: 10;
}

.remove-coborrower-btn:hover {
    color: #a71d2a;
}

.remove-coborrower-btn svg {
    width: 16px;
    height: 16px;
}

/* Custom purple badge for Funded status */
.bg-purple {
    background-color: #7C3AED !important;
    color: white !important;
}

/* Purple spectrum status badges (lightest to darkest) */
.bg-purple-1 {
    background-color: #9333EA !important; /* Vibrant Amethyst - Prospect */
    color: white !important;
}

.bg-purple-2 {
    background-color: #7E22CE !important; /* Royal Purple - App Sent */
    color: white !important;
}

.bg-purple-3 {
    background-color: #6B21A8 !important; /* Deep Violet - App in Progress */
    color: white !important;
}

.bg-purple-4 {
    background-color: #581C87 !important; /* Midnight Purple - Cust Uploaded App */
    color: white !important;
}

.bg-purple-5 {
    background-color: #4C1D95 !important; /* Deep Indigo-Purple - App to Lender */
    color: white !important;
}

.bg-purple-6 {
    background-color: #3B0764 !important; /* Dark Grape - Doc Waiting */
    color: white !important;
}

.bg-purple-7 {
    background-color: #2E1065 !important; /* Deep Space Purple - Closed */
    color: white !important;
}

.bg-purple-8 {
    background-color: #1E0A3C !important; /* Obsidian Plum - Funded */
    color: white !important;
}

/* =====================================================
   MOBILE RESPONSIVE STYLES
   ===================================================== */

/* Mobile Navbar Toggle Button */
.navbar-toggler {
    border: 1px solid var(--gray-300);
    padding: 0.5rem;
    border-radius: 0.5rem;
    background: white;
}

.navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}

.navbar-toggler svg {
    width: 24px;
    height: 24px;
    color: var(--gray-700);
}

/* Mobile Navigation Menu */
@media (max-width: 991.98px) {
    .navbar {
        padding: 0.75rem 1rem;
    }
    
    .navbar-collapse {
        background: white;
        margin-top: 1rem;
        padding: 1rem;
        border-radius: var(--border-radius);
        box-shadow: var(--shadow-md);
    }
    
    .navbar-nav {
        gap: 0.25rem !important;
    }
    
    .navbar-nav .nav-link {
        padding: 0.75rem 1rem !important;
        border-radius: 0.5rem;
        display: flex;
        align-items: center;
        gap: 0.75rem;
    }
    
    .navbar-nav .nav-link svg {
        width: 20px;
        height: 20px;
    }
    
    .navbar-nav .dropdown-menu {
        position: static !important;
        transform: none !important;
        box-shadow: none;
        border: none;
        background: var(--gray-50);
        margin-left: 1rem;
        padding: 0.5rem;
        border-radius: 0.5rem;
    }
    
    .user-menu {
        border-top: 1px solid var(--gray-200);
        padding-top: 1rem;
        justify-content: center;
    }
}

/* Mobile Container Padding */
@media (max-width: 767.98px) {
    .container, .container-fluid {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    main.container {
        padding-top: 1rem !important;
        padding-bottom: 1rem !important;
    }
    
    /* Mobile Page Title */
    .h3, h3 {
        font-size: 1.25rem;
    }
    
    .h4, h4 {
        font-size: 1.1rem;
    }
    
    /* Mobile Buttons */
    .btn {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
    
    .btn-sm {
        padding: 0.4rem 0.75rem;
        font-size: 0.8rem;
    }
    
    /* Mobile Cards */
    .card {
        margin-bottom: 1rem;
    }
    
    .card-body {
        padding: 1rem;
    }
    
    /* Mobile Stat Cards */
    .stat-card {
        padding: 1rem !important;
    }
    
    .stat-value {
        font-size: 1.5rem !important;
    }
    
    .stat-label {
        font-size: 0.75rem !important;
    }
    
    /* Mobile Dropdown Buttons - Stack Actions */
    .d-flex.gap-2:not(.navbar-nav):not(.user-menu) {
        flex-wrap: wrap;
    }
    
    /* Mobile Table Responsive */
    .table-responsive {
        margin: 0 -1rem;
        padding: 0 1rem;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .compact-table {
        font-size: 9.5pt;
        min-width: 600px;
    }
    
    .compact-table th,
    .compact-table td {
        padding: 0.25rem 0.4rem !important;
        white-space: nowrap;
    }
    
    /* Hide less important columns on mobile */
    .compact-table .d-mobile-none {
        display: none !important;
    }
    
    /* Mobile Forms */
    .form-control, .form-select {
        font-size: 16px; /* Prevents iOS zoom on focus */
    }
    
    /* Mobile Modals */
    .modal-dialog {
        margin: 0.5rem;
    }
    
    .modal-header, .modal-body, .modal-footer {
        padding: 1rem;
    }
    
    /* Mobile Quick Resources */
    .resource-dropdown {
        width: 100%;
    }
    
    .resource-dropdown .btn {
        width: 100%;
        justify-content: space-between;
    }
    
    .resource-dropdown-content {
        position: static !important;
        width: 100%;
        margin-top: 0.5rem;
    }
    
    /* Mobile Apply Now Card */
    .card.border-primary .d-flex.justify-content-between {
        flex-direction: column;
        gap: 1rem;
    }
    
    .card.border-primary .d-flex.gap-2 {
        width: 100%;
    }
    
    .card.border-primary .d-flex.gap-2 .btn {
        flex: 1;
    }
    
    /* Mobile Dashboard Welcome Header */
    .d-flex.justify-content-between.align-items-center.mb-4 {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 1rem;
    }
    
    .d-flex.justify-content-between.align-items-center.mb-4 .dropdown,
    .d-flex.justify-content-between.align-items-center.mb-4 .btn {
        width: 100%;
    }
    
    .d-flex.justify-content-between.align-items-center.mb-4 .dropdown .btn {
        width: 100%;
        justify-content: center;
    }
    
    /* Mobile Alerts */
    .alert {
        padding: 0.75rem;
        font-size: 0.875rem;
    }
    
    .alert .d-flex.gap-2 {
        margin-top: 0.75rem;
        width: 100%;
    }
    
    .alert .d-flex.gap-2 .btn {
        flex: 1;
    }
}

/* Small Phone Adjustments */
@media (max-width: 375px) {
    .navbar-brand span {
        font-size: 0.9rem;
    }
    
    .stat-value {
        font-size: 1.25rem !important;
    }
    
    .btn {
        padding: 0.5rem 0.75rem;
        font-size: 0.85rem;
    }
}

/* Touch-friendly tap targets */
@media (pointer: coarse) {
    .btn, .nav-link, .dropdown-item, .list-group-item {
        min-height: 44px;
        display: flex;
        align-items: center;
    }
    
    .compact-table .btn-action {
        min-height: 36px;
        min-width: 36px;
        padding: 0.25rem 0.5rem;
    }
}

/* Mobile Tabs - Scrollable */
@media (max-width: 767.98px) {
    .nav-tabs {
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .nav-tabs::-webkit-scrollbar {
        display: none;
    }
    
    .nav-tabs .nav-item {
        flex-shrink: 0;
    }
    
    .nav-tabs .nav-link {
        white-space: nowrap;
        padding: 0.5rem 0.75rem;
        font-size: 0.85rem;
    }
    
    /* Borrower tabs scrollable */
    .borrower-tabs {
        flex-wrap: nowrap !important;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 0.5rem;
    }
    
    .borrower-tabs .nav-link {
        font-size: 0.8rem !important;
        padding: 0.4rem 0.6rem !important;
    }
    
    /* Stat cards in row */
    .row.mb-4 .col-md-4 {
        margin-bottom: 0.5rem;
    }
    
    /* Breadcrumb mobile */
    .breadcrumb {
        font-size: 0.8rem;
        flex-wrap: wrap;
    }
    
    .breadcrumb-item + .breadcrumb-item::before {
        padding-right: 0.3rem;
    }
    
    .breadcrumb-item + .breadcrumb-item {
        padding-left: 0.3rem;
    }
}

/* ============================================================
   Training Sidebar
   ============================================================ */

/* Body offset when sidebar is open */
body.training-sidebar-visible {
    padding-right: 290px;
    transition: padding-right 0.3s ease;
}

/* Toggle tab (always visible on right edge) */
.training-sidebar-tab {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%) rotate(0deg);
    z-index: 1036;
    background: #1a1a2e;
    color: #f59e0b;
    border: none;
    border-radius: 10px 0 0 10px;
    padding: 12px 10px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    box-shadow: -3px 0 12px rgba(0,0,0,0.3);
    transition: right 0.3s ease, background 0.2s;
}

.training-sidebar-tab:hover {
    background: #252545;
}

body.training-sidebar-visible .training-sidebar-tab {
    right: 290px;
}

.training-tab-label {
    font-size: 0.65rem;
    font-weight: 600;
    color: rgba(255,255,255,0.7);
    writing-mode: vertical-rl;
    text-orientation: mixed;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.training-tab-badge {
    background: #f59e0b;
    color: #1a1a2e;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 2px 5px;
    border-radius: 20px;
    line-height: 1.2;
    white-space: nowrap;
}

.training-tab-badge-done {
    background: #10b981;
    color: #fff;
}

/* Sidebar panel */
.training-sidebar {
    position: fixed;
    top: 0;
    right: -290px;
    width: 290px;
    height: 100vh;
    background: #1a1a2e;
    z-index: 1035;
    display: flex;
    flex-direction: column;
    box-shadow: -4px 0 20px rgba(0,0,0,0.35);
    transition: right 0.3s ease;
    overflow: hidden;
}

.training-sidebar.open {
    right: 0;
}

.training-sidebar-header {
    padding: 16px 14px 12px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.training-progress-bar-wrap {
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    height: 5px;
    overflow: hidden;
}

.training-progress-bar-inner {
    height: 100%;
    background: linear-gradient(90deg, #f59e0b, #fbbf24);
    border-radius: 10px;
    transition: width 0.5s ease;
    min-width: 4px;
}

/* Module list */
.training-module-list {
    flex: 1;
    overflow-y: auto;
    padding: 8px 0;
    scrollbar-width: thin;
    scrollbar-color: rgba(255,255,255,0.15) transparent;
}

.training-module-list::-webkit-scrollbar {
    width: 4px;
}

.training-module-list::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.15);
    border-radius: 2px;
}

.training-module-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    width: 100%;
    background: none;
    border: none;
    padding: 10px 14px;
    cursor: pointer;
    text-align: left;
    border-left: 3px solid transparent;
    transition: background 0.15s, border-color 0.15s;
}

.training-drag-handle {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    padding: 0 4px 0 0;
    cursor: grab;
    opacity: 0.4;
    transition: opacity 0.15s;
    align-self: center;
}
.training-drag-handle:active { cursor: grabbing; }
.training-module-item:hover .training-drag-handle { opacity: 0.75; }

.training-sortable-ghost {
    opacity: 0.35;
    background: rgba(245,158,11,0.12) !important;
    border-left-color: #f59e0b !important;
}
.training-reorder-status {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.45);
    text-align: center;
    padding: 4px 0 2px;
    min-height: 16px;
    letter-spacing: 0.01em;
}

.training-module-item:hover {
    background: rgba(255,255,255,0.06);
    border-left-color: #f59e0b;
}

.training-module-item.completed {
    border-left-color: #10b981;
    opacity: 0.8;
}

.training-module-item.in_progress {
    border-left-color: #f59e0b;
    background: rgba(245,158,11,0.06);
}

.training-module-num {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
}

.module-num-label {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.6);
    font-size: 0.7rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.training-module-text {
    flex: 1;
    min-width: 0;
}

.training-module-title {
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(255,255,255,0.85);
    line-height: 1.35;
    word-break: break-word;
}

.training-module-status-label {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.35);
    margin-top: 2px;
}

.training-module-item.completed .training-module-status-label {
    color: #10b981;
}

.training-module-item.in_progress .training-module-status-label {
    color: #f59e0b;
}

/* AI Coaching Bubble */
.training-bubble-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 1044;
    backdrop-filter: blur(2px);
}

.training-bubble {
    position: fixed;
    bottom: 24px;
    right: 310px;
    width: 370px;
    max-height: 80vh;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    z-index: 1045;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    animation: bubbleSlideIn 0.25s ease;
}

@keyframes bubbleSlideIn {
    from { opacity: 0; transform: translateY(20px) scale(0.97); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

.training-bubble-header {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 14px 14px 12px;
    background: #1a1a2e;
    flex-shrink: 0;
}

.training-bubble-module-num {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #f59e0b;
    color: #1a1a2e;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
}

.training-bubble-title {
    flex: 1;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.4;
    word-break: break-word;
    overflow-wrap: anywhere;
}

.training-bubble-close {
    background: none;
    border: none;
    color: rgba(255,255,255,0.5);
    cursor: pointer;
    padding: 2px;
    flex-shrink: 0;
    line-height: 1;
    transition: color 0.15s;
}

.training-bubble-close:hover {
    color: #fff;
}

.training-bubble-body {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
    font-size: 0.875rem;
    line-height: 1.65;
    color: #374151;
}

.training-bubble-body p {
    margin-bottom: 0.85em;
}

.training-bubble-body p:last-child {
    margin-bottom: 0;
}

.training-bubble-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 24px 0;
    color: #9ca3af;
    font-size: 0.85rem;
}

.training-spinner {
    width: 28px;
    height: 28px;
    border: 3px solid #e5e7eb;
    border-top-color: #f59e0b;
    border-radius: 50%;
    animation: btnSpin 0.7s linear infinite;
}

.training-spinner-sm {
    display: inline-block;
    width: 12px;
    height: 12px;
    border: 2px solid rgba(255,255,255,0.4);
    border-top-color: #fff;
    border-radius: 50%;
    animation: btnSpin 0.7s linear infinite;
    vertical-align: middle;
    margin-right: 4px;
}

.training-bubble-footer {
    padding: 10px 14px 14px;
    display: flex;
    border-top: 1px solid #f3f4f6;
    flex-shrink: 0;
}

.training-complete-btn {
    background: #f59e0b;
    color: #1a1a2e;
    border: none;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 8px;
    width: 100%;
    justify-content: center;
    transition: background 0.15s;
}

.training-complete-btn:hover {
    background: #d97706;
    color: #1a1a2e;
}

.training-complete-btn:disabled {
    opacity: 0.65;
}

.training-bubble-feedback {
    padding: 14px 16px;
    background: #f0fdf4;
    border-top: 1px solid #d1fae5;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
}

.training-feedback-inner {
    font-size: 0.875rem;
    color: #065f46;
    line-height: 1.55;
}

.training-already-done {
    display: flex;
    align-items: center;
    font-size: 0.78rem;
    color: #10b981;
    margin-top: 10px;
    font-weight: 500;
}

/* Responsive: hide sidebar on very small screens */
@media (max-width: 640px) {
    .training-sidebar,
    .training-sidebar-tab,
    .training-bubble {
        display: none !important;
    }
    body.training-sidebar-visible {
        padding-right: 0;
    }
}

/* ── Quiz answer buttons ──────────────────────────────────────────────────── */
.quiz-choice-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    background: #ffffff;
    border: 1.5px solid #d1d5db;
    border-radius: 9px;
    padding: 9px 14px;
    font-size: 0.84rem;
    font-family: inherit;
    color: #1f2937;
    cursor: pointer;
    text-align: left;
    transition: background 0.15s, border-color 0.15s, transform 0.1s;
    line-height: 1.4;
}
.quiz-choice-btn:hover:not(:disabled) {
    background: #faf5ff;
    border-color: #a78bfa;
    transform: translateX(2px);
}
.quiz-choice-btn:disabled {
    cursor: default;
    opacity: 0.85;
}
.quiz-choice-btn.quiz-correct {
    background: #d1fae5;
    border-color: #10b981;
    color: #065f46;
    font-weight: 600;
}
.quiz-choice-btn.quiz-wrong {
    background: #fee2e2;
    border-color: #ef4444;
    color: #991b1b;
}
.quiz-letter {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: #ede9fe;
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 700;
    color: #7c3aed;
    flex-shrink: 0;
}
.quiz-choice-btn.quiz-correct .quiz-letter {
    background: #a7f3d0;
    color: #065f46;
}
.quiz-choice-btn.quiz-wrong .quiz-letter {
    background: #fecaca;
    color: #991b1b;
}
.quiz-text {
    flex: 1;
}

/* ── Quiz "Answer" button ─────────────────────────────────────────────────── */
.quiz-answer-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: #7c3aed;
    color: #fff;
    border: none;
    border-radius: 9px;
    padding: 10px 20px;
    font-size: 0.88rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: background 0.15s, transform 0.1s;
    margin-top: 4px;
}
.quiz-answer-btn:hover:not(:disabled) {
    background: #6d28d9;
    transform: translateY(-1px);
}
.quiz-answer-btn:disabled {
    cursor: default;
    opacity: 0.85;
}
