
/* Section 508 / High Contrast Accessibility Styles */
:focus {
    outline: 3px solid #38bdf8 !important;
    outline-offset: 2px !important;
}

.skip-to-content {
    position: absolute;
    top: -40px;
    left: 0;
    background: #5c2d91;
    color: white;
    padding: 8px 16px;
    z-index: 100;
    transition: top 0.2s;
}
.skip-to-content:focus {
    top: 0;
}

/* Light & Dark Theme Base */
body.theme-dark {
    background-color: #0f172a;
    color: #f8fafc;
}

body.theme-light {
    background-color: #f1f5f9;
    color: #0f172a;
}

.glass-card {
    backdrop-filter: blur(12px);
    transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

body.theme-dark .glass-card {
    background: rgba(30, 41, 59, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

body.theme-light .glass-card {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(203, 213, 225, 0.8);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
}

.step-active {
    background: #5c2d91;
    color: #ffffff;
    box-shadow: 0 0 15px rgba(92, 45, 145, 0.5);
}

.step-completed {
    background: #059669;
    color: #ffffff;
}

.step-inactive {
    background: #334155;
    color: #94a3b8;
}

body.theme-light .step-inactive {
    background: #e2e8f0;
    color: #64748b;
}
