/* ABA Applied Exam Simulator — Core Styles */
/* Redesigned: ABA official palette + fullscreen + Claude.ai-inspired clean layout */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
    /* ABA Official Colors (theaba.org) */
    --aba-navy:       #003087;
    --aba-dark-blue:  #002068;
    --aba-blue:       #0052cc;
    --aba-light-blue: #2684ff;
    --aba-sky:        #4c9aff;
    --aba-pale-blue:  #deebff;
    --aba-ice:        #f0f4ff;

    /* Gold accent */
    --aba-gold:       #b8860b;
    --aba-gold-light: #fff3cd;
    --aba-gold-mid:   #f0c040;

    /* Neutrals */
    --aba-white:      #ffffff;
    --aba-surface:    #f8f9fc;
    --aba-border:     #dde1e7;
    --aba-gray-50:    #f9fafb;
    --aba-gray-100:   #f3f4f6;
    --aba-gray-200:   #e5e7eb;
    --aba-gray-300:   #d1d5db;
    --aba-gray-400:   #9ca3af;
    --aba-gray-500:   #6b7280;
    --aba-gray-600:   #4b5563;
    --aba-gray-700:   #374151;
    --aba-gray-800:   #1f2937;
    --aba-gray-900:   #111827;

    /* Semantic */
    --aba-red:        #dc3545;
    --aba-red-light:  #fde8ea;
    --aba-green:      #198754;
    --aba-green-light:#d1f5e0;
    --aba-yellow:     #ffc107;
    --aba-yellow-light:#fff8e1;
    --aba-orange:     #fd7e14;
    --aba-teal:       #0d9488;

    /* Shadows */
    --aba-shadow-sm:  0 1px 3px rgba(0,0,0,0.08);
    --aba-shadow:     0 4px 12px rgba(0,48,135,0.10);
    --aba-shadow-md:  0 8px 24px rgba(0,48,135,0.14);
    --aba-shadow-lg:  0 20px 40px rgba(0,48,135,0.16);

    /* Radii */
    --aba-radius-sm:  6px;
    --aba-radius:     10px;
    --aba-radius-lg:  16px;
    --aba-radius-xl:  24px;

    /* Typography */
    --aba-font:       'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --aba-font-mono:  'JetBrains Mono', 'Fira Code', monospace;
}

/* === APP SHELL — FULLSCREEN === */
.aba-exam-app {
    font-family: var(--aba-font);
    color: var(--aba-gray-800);
    line-height: 1.6;
    width: 100%;
    max-width: 100%;
    margin: 0;
    position: relative;
    min-height: 100vh;
    background: var(--aba-surface);
    border-radius: 0;
    overflow-x: hidden;
    overflow-y: auto;
}

.aba-exam-app * {
    box-sizing: border-box;
}

/* Loading Screen */
.aba-loading-screen {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    gap: 28px;
    background: linear-gradient(180deg, rgba(255,255,255,0.12) 0%, transparent 35%, #2d3238 100%), #2d3238;
    color: white;
}

.aba-loading-logo {
    max-width: 126px;
    height: auto;
    object-fit: contain;
    margin-bottom: 8px;
}

.aba-loading-spinner {
    width: 44px;
    height: 44px;
    border: 4px solid rgba(255,255,255,0.2);
    border-top-color: var(--aba-gold-mid);
    border-radius: 50%;
    animation: aba-spin 0.9s linear infinite;
}

.aba-loading-message {
    font-size: 15px;
    font-weight: 500;
    color: rgba(255,255,255,0.9);
    margin: 0;
    min-height: 1.5em;
    text-align: center;
    padding: 0 24px;
    max-width: 360px;
    transition: opacity 0.4s ease;
}

@keyframes aba-spin {
    to { transform: rotate(360deg); }
}

/* Login Required */
.aba-login-required {
    text-align: center;
    padding: 60px 30px;
    background: var(--aba-white);
    border-radius: var(--aba-radius-lg);
    box-shadow: var(--aba-shadow);
}

/* === BUTTONS === */
.aba-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 26px;
    border: none;
    border-radius: var(--aba-radius);
    font-family: var(--aba-font);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.18s ease;
    text-decoration: none;
    line-height: 1.4;
    letter-spacing: 0.01em;
}

.aba-btn:hover {
    transform: translateY(-1px);
    box-shadow: var(--aba-shadow-md);
}

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

.aba-btn-primary {
    background: var(--aba-navy);
    color: var(--aba-white);
    box-shadow: var(--aba-shadow-sm);
}

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

.aba-btn-gold {
    background: var(--aba-gold);
    color: var(--aba-white);
}

.aba-btn-gold:hover {
    background: #9a6f09;
    color: var(--aba-white);
}

.aba-btn-secondary {
    background: var(--aba-white);
    color: var(--aba-navy);
    border: 1.5px solid var(--aba-border);
}

.aba-btn-secondary:hover {
    border-color: var(--aba-navy);
    color: var(--aba-navy);
    background: var(--aba-ice);
}

.aba-btn-success {
    background: var(--aba-green);
    color: var(--aba-white);
}

.aba-btn-danger {
    background: var(--aba-red);
    color: var(--aba-white);
}

.aba-btn-lg {
    padding: 14px 34px;
    font-size: 16px;
    border-radius: var(--aba-radius-lg);
}

.aba-btn-sm {
    padding: 7px 14px;
    font-size: 12px;
}

.aba-btn-icon {
    width: 40px;
    height: 40px;
    padding: 0;
    border-radius: 50%;
}

.aba-btn:disabled {
    opacity: 0.45;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* === CARDS === */
.aba-card {
    background: var(--aba-white);
    border-radius: var(--aba-radius-lg);
    border: 1px solid var(--aba-border);
    box-shadow: var(--aba-shadow-sm);
    padding: 24px;
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.aba-card:hover {
    box-shadow: var(--aba-shadow);
    border-color: rgba(0,48,135,0.15);
}

.aba-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--aba-gray-100);
}

.aba-card-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--aba-navy);
    margin: 0;
}

/* === HEADER BAR === */
.aba-header {
    background: #2d3238;
    color: var(--aba-white);
    padding: 0 32px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.aba-header-logo {
    display: flex;
    align-items: center;
    gap: 14px;
}

.aba-header-logo-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
    border-radius: var(--aba-radius);
    object-fit: contain;
    flex-shrink: 0;
    display: block;
}

.aba-header-title {
    font-size: 17px;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.aba-header-subtitle {
    font-size: 12px;
    opacity: 0.65;
    margin-top: 1px;
}

.aba-header-phase {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.10);
    padding: 7px 18px;
    border-radius: var(--aba-radius-xl);
    font-size: 13px;
    font-weight: 500;
    border: 1px solid rgba(255,255,255,0.15);
}

.aba-header-phase-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4ade80;
    animation: aba-pulse-dot 2s ease infinite;
    flex-shrink: 0;
}

/* Dashboard header: Study Tools (minimalist, right-aligned) */
.aba-header-study-tools {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}
.aba-header-tool {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
}
.aba-header-tool-icon {
    width: 16px;
    height: 16px;
    min-width: 16px;
    min-height: 16px;
    max-width: 16px;
    max-height: 16px;
    flex-shrink: 0;
    opacity: 0.9;
    display: block;
    box-sizing: border-box;
}
.aba-header-tool-text {
    color: #fff;
}

@keyframes aba-pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.85); }
}

/* Timer bar under header */
.aba-phase-timer-bar {
    height: 4px;
    background: var(--aba-border);
    position: relative;
    overflow: hidden;
}

.aba-phase-timer-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--aba-navy), var(--aba-blue));
    border-radius: 0 2px 2px 0;
    transition: width 1s linear, background 0.5s ease;
}

.aba-phase-timer-fill.warning {
    background: linear-gradient(90deg, var(--aba-yellow), var(--aba-orange));
}

.aba-phase-timer-fill.critical {
    background: linear-gradient(90deg, var(--aba-red), #ef4444);
}

/* Progress Bar */
.aba-progress-bar {
    width: 100%;
    height: 6px;
    background: var(--aba-gray-200);
    border-radius: 3px;
    overflow: hidden;
}

.aba-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--aba-navy), var(--aba-blue));
    border-radius: 3px;
    transition: width 0.5s ease;
}

/* === BADGES === */
.aba-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px 10px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.aba-badge-blue {
    background: var(--aba-pale-blue);
    color: var(--aba-navy);
}

.aba-badge-green {
    background: var(--aba-green-light);
    color: #155a38;
}

.aba-badge-red {
    background: var(--aba-red-light);
    color: var(--aba-red);
}

.aba-badge-yellow {
    background: var(--aba-yellow-light);
    color: #7c5700;
}

.aba-badge-gold {
    background: var(--aba-gold-light);
    color: var(--aba-gold);
    border: 1px solid var(--aba-gold-mid);
}

/* === SECTION HEADERS === */
.aba-section-title {
    font-size: 22px;
    font-weight: 800;
    color: var(--aba-navy);
    margin: 0 0 8px 0;
    letter-spacing: -0.02em;
}

.aba-section-subtitle {
    font-size: 14px;
    color: var(--aba-gray-500);
    margin: 0 0 24px 0;
    line-height: 1.6;
}

/* === ALERT BANNERS === */
.aba-warning {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 18px;
    background: var(--aba-yellow-light);
    border-radius: var(--aba-radius);
    border-left: 3px solid var(--aba-yellow);
    font-size: 13px;
    color: #7c5700;
    margin: 14px 0;
}

.aba-warning-icon {
    flex-shrink: 0;
}

.aba-info {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 18px;
    background: var(--aba-pale-blue);
    border-radius: var(--aba-radius);
    border-left: 3px solid var(--aba-blue);
    font-size: 13px;
    color: var(--aba-dark-blue);
    margin: 14px 0;
}

/* === SCROLLBAR === */
.aba-exam-app ::-webkit-scrollbar {
    width: 5px;
}
.aba-exam-app ::-webkit-scrollbar-track {
    background: transparent;
}
.aba-exam-app ::-webkit-scrollbar-thumb {
    background: var(--aba-gray-300);
    border-radius: 3px;
}

/* === VIEW TRANSITIONS (overlay: views stack in same spot, no page scroll) === */
.aba-exam-app {
    position: relative;
}

.aba-view {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    min-height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    animation: aba-fade-in 0.35s ease both;
}

@keyframes aba-fade-in {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
}

.aba-view-enter {
    opacity: 0;
    transform: translateY(16px);
}

.aba-view-enter-active {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* === GRIDS & UTILITIES === */
.aba-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.aba-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.aba-text-center { text-align: center; }
.aba-text-right  { text-align: right; }
.aba-mt-4  { margin-top: 16px; }
.aba-mt-6  { margin-top: 24px; }
.aba-mb-4  { margin-bottom: 16px; }
.aba-mb-6  { margin-bottom: 24px; }
.aba-p-4   { padding: 16px; }
.aba-p-6   { padding: 24px 32px; }
.aba-flex  { display: flex; }
.aba-flex-center { display: flex; align-items: center; justify-content: center; }
.aba-gap-2 { gap: 8px; }
.aba-gap-4 { gap: 16px; }
.aba-gap-6 { gap: 24px; }

/* === ORIENTATION / REGISTRATION SLIDES === */
.aba-orientation-slide {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
    padding: 48px 32px;
}

.aba-orientation-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    margin: 0 auto 24px;
    background: var(--aba-pale-blue);
    border: 3px solid var(--aba-blue);
    box-shadow: var(--aba-shadow-md);
}

.aba-orientation-icon.soe  { background: var(--aba-pale-blue); border-color: var(--aba-navy); }
.aba-orientation-icon.osce { background: var(--aba-ice);       border-color: var(--aba-teal); }

.aba-orientation-title {
    font-size: 28px;
    font-weight: 800;
    color: var(--aba-navy);
    margin: 0 0 12px 0;
    letter-spacing: -0.02em;
}

.aba-orientation-text {
    font-size: 15px;
    color: var(--aba-gray-600);
    line-height: 1.7;
    margin: 0 0 24px 0;
}

.aba-orientation-rules {
    background: var(--aba-white);
    border: 1px solid var(--aba-border);
    border-radius: var(--aba-radius-lg);
    padding: 20px 24px;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 0 0 32px 0;
}

.aba-orientation-rule {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 14px;
    color: var(--aba-gray-700);
}

.aba-orientation-rule-num {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--aba-navy);
    color: white;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
}

/* === SESSION BREAK LAYOUT (S1→S2) === */
.aba-session-break-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    min-height: calc(100vh - 67px);
}

.aba-session-break-rest {
    background: var(--aba-surface);
    padding: 48px 40px;
    border-right: 1px solid var(--aba-border);
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.aba-session-break-case {
    background: var(--aba-white);
    padding: 48px 40px;
    overflow-y: auto;
}

.aba-session-break-complete {
    text-align: center;
}

.aba-session-break-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--aba-green);
    color: white;
    font-size: 32px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    box-shadow: 0 0 0 8px var(--aba-green-light);
}

.aba-session-break-title {
    font-size: 24px;
    font-weight: 800;
    color: var(--aba-navy);
    margin: 0 0 8px 0;
}

.aba-session-break-subtitle {
    font-size: 14px;
    color: var(--aba-gray-500);
    margin: 0;
    line-height: 1.6;
}

.aba-break-activities {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.aba-break-activity {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--aba-gray-600);
    font-weight: 500;
}

.aba-break-activity-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--aba-white);
    border: 2px solid var(--aba-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    box-shadow: var(--aba-shadow-sm);
}

.aba-session-break-timer-label {
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    color: var(--aba-gray-500);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
}

.aba-session-break-timer-area {
    flex: 1;
}

.aba-session-break-case-header {
    display: flex;
    align-items: center;
    margin-bottom: 4px;
}

/* === BREAK AREA (SOE → OSCE) === */
.aba-break-area {
    text-align: center;
    padding: 60px 30px;
    max-width: 600px;
    margin: 0 auto;
}

.aba-break-icons {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin: 32px 0;
}

.aba-break-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.aba-break-icon-circle {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--aba-ice);
    border: 2px solid var(--aba-pale-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: var(--aba-shadow-sm);
}

.aba-break-icon-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--aba-gray-600);
}

/* === RESULTS — base moved to environment.css === */
.aba-radar-chart {
    width: 100%;
    max-width: 400px;
    margin: 20px auto;
}

/* .aba-feedback-title is in environment.css */

.aba-strength-item,
.aba-improvement-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 14px;
}

.aba-strength-item::before {
    content: '✓';
    color: var(--aba-green);
    font-weight: 700;
    font-size: 15px;
    line-height: 1.5;
}

.aba-improvement-item::before {
    content: '!';
    color: var(--aba-orange);
    font-weight: 700;
    font-size: 13px;
    line-height: 1.5;
    background: var(--aba-yellow-light);
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* === PHASE STRIP (OSCE progress) === */
.aba-phase-strip {
    display: flex;
    gap: 4px;
}

.aba-phase-segment {
    height: 4px;
    flex: 1;
    border-radius: 2px;
    background: var(--aba-gray-200);
}

.aba-phase-segment.active    { background: var(--aba-navy); }
.aba-phase-segment.completed { background: var(--aba-green); }
.aba-phase-segment.upcoming  { background: var(--aba-gray-200); }

/* === DASHBOARD LAYOUT (fixed, no page scroll) === */
.aba-dashboard-view {
    display: flex;
    flex-direction: column;
    height: 100vh;
    overflow: hidden;
}

/* Hamburger: hidden on desktop, shown on mobile via responsive.css */
.aba-sidebar-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0;
    margin-left: 12px;
    flex-shrink: 0;
    background: rgba(255,255,255,0.08);
    border: none;
    border-radius: 8px;
    color: #fff;
    cursor: pointer;
    transition: background 0.2s ease;
}
.aba-sidebar-toggle:hover {
    background: rgba(255,255,255,0.14);
}
.aba-sidebar-overlay {
    display: none;
}
.aba-sidebar-close {
    display: none;
}

.aba-dashboard-layout {
    display: flex;
    flex: 1;
    min-height: 0;
    overflow: hidden;
}

.aba-dashboard-sidebar {
    width: 280px;
    min-width: 260px;
    background: #2d3238;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
}

.aba-sidebar-history {
    flex: 1;
    min-height: 0;
    overflow-y: auto;
    padding: 16px 14px;
}

.aba-sidebar-title {
    font-size: 11px;
    font-weight: 600;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin: 0 0 12px 0;
}

.aba-history-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.aba-sidebar-user-wrap {
    position: relative;
    flex-shrink: 0;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.aba-sidebar-user {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    cursor: pointer;
    transition: background 0.15s ease;
}

.aba-sidebar-user:hover {
    background: rgba(255,255,255,0.06);
}

.aba-user-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #454b52;
    color: rgba(255,255,255,0.9);
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.aba-user-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.aba-user-name {
    font-size: 13px;
    font-weight: 500;
    color: rgba(255,255,255,0.95);
}

.aba-user-tier {
    font-size: 11px;
    color: rgba(255,255,255,0.5);
}

.aba-user-chevron {
    flex-shrink: 0;
    color: rgba(255,255,255,0.4);
    transition: transform 0.2s ease;
}

.aba-sidebar-user[aria-expanded="true"] .aba-user-chevron {
    transform: rotate(180deg);
}

.aba-user-menu {
    position: absolute;
    bottom: 100%;
    left: 14px;
    right: 14px;
    margin-bottom: 4px;
    background: #383d44;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
    padding: 6px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: opacity 0.18s ease, visibility 0.18s ease, transform 0.18s ease;
    z-index: 50;
}

.aba-user-menu[aria-hidden="false"] {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.aba-user-menu-item {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 10px 14px;
    border: none;
    background: transparent;
    font-family: var(--aba-font);
    font-size: 13px;
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    cursor: pointer;
    transition: background 0.12s ease;
}

.aba-user-menu-item:hover {
    background: rgba(255,255,255,0.08);
}

.aba-user-menu-icon {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}
.aba-user-menu-icon svg {
    flex-shrink: 0;
}

/* Main content */
.aba-dashboard-main {
    flex: 1;
    min-height: 0;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
}

.aba-dashboard-bg {
    position: absolute;
    inset: 0;
    background-color: #f0f2f5;
    z-index: 0;
}

.aba-dashboard-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.aba-dashboard-overlay {
    position: absolute;
    inset: 0;
    background: rgb(0 0 0 / 39%);
    pointer-events: none;
    z-index: 1;
}

.aba-dashboard-content {
    position: relative;
    z-index: 2;
    padding: 16px 24px;
    flex: 1;
    min-height: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.aba-dashboard-section {
    max-width: 720px;
    margin: 0 auto;
    width: 100%;
    flex: 1;
    min-height: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.aba-dashboard-heading {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin: 0 0 2px 0;
    flex-shrink: 0;
    text-align: center;
}

.aba-dashboard-subheading {
    font-size: 12px;
    color: rgba(255,255,255,0.85);
    margin: 0 0 12px 0;
    line-height: 1.4;
    flex-shrink: 0;
    text-align: center;
}

/* Dashboard cards: 2 columns × 3 rows — Full Exam on new row spanning 2 cols */
.aba-dashboard-cards-grid {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: minmax(100px, 1fr) minmax(100px, 1fr) minmax(120px, auto);
    grid-template-areas:
        "soe practice-soe"
        "osce practice-osce"
        "full full";
    gap: 8px;
    flex: 1;
    min-height: 0;
    max-height: 380px;
    align-items: stretch;
}

.aba-dashboard-cards-grid .aba-exam-type-card[data-exam-type="soe_only"] { grid-area: soe; }
.aba-dashboard-cards-grid .aba-exam-type-card[data-exam-type="osce_only"] { grid-area: osce; }
.aba-dashboard-cards-grid .aba-exam-type-card[data-exam-type="practice_soe"] { grid-area: practice-soe; }
.aba-dashboard-cards-grid .aba-exam-type-card[data-exam-type="practice_osce"] { grid-area: practice-osce; }
.aba-dashboard-cards-grid .aba-full-exam-card { grid-area: full; }

.aba-focus-inline {
    margin-top: 2px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    flex-wrap: nowrap;
}

.aba-focus-inline .aba-focus-label {
    font-size: 10px;
    color: rgba(255,255,255,0.9);
    line-height: 1.2;
}

.aba-focus-inline .aba-focus-select {
    padding: 1px 4px;
    border-radius: 4px;
    background: #1f2937;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.25);
    font-size: 10px;
    line-height: 1.2;
}

.aba-focus-inline .aba-focus-select option {
    background: #1f2937;
    color: #fff;
}

.aba-dashboard-cards-grid .aba-exam-type-card {
    display: flex;
    align-items: center;
    text-align: left;
    padding: 8px 10px;
    gap: 8px;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: background 0.2s ease, border-color 0.2s ease;
    cursor: pointer;
    min-height: 0;
}

.aba-dashboard-cards-grid .aba-exam-type-card:hover {
    background: rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.2);
}

.aba-dashboard-cards-grid .aba-exam-type-card.selected {
    background: rgba(0, 48, 135, 0.35);
    border-color: rgba(255, 255, 255, 0.25);
}

.aba-dashboard-cards-grid .aba-exam-type-icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
    margin: 0;
    border-radius: 6px;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    flex-shrink: 0;
}

.aba-dashboard-cards-grid .aba-exam-type-icon.full {
    background: rgba(255, 255, 255, 0.25);
}

.aba-full-exam-card {
    align-items: flex-start;
}

.aba-full-exam-card .aba-exam-type-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
    min-height: 0;
}

.aba-full-exam-breakdown {
    margin-top: 6px;
    padding-top: 6px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.aba-breakdown-row {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.3;
}

.aba-breakdown-row span {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
}

.aba-dashboard-cards-grid .aba-exam-type-icon.soe {
    background: rgba(255, 255, 255, 0.2);
}

.aba-dashboard-cards-grid .aba-exam-type-icon.osce {
    background: rgba(255, 255, 255, 0.2);
}

.aba-dashboard-cards-grid .aba-exam-type-content {
    flex: 1;
    min-width: 0;
}

.aba-dashboard-cards-grid .aba-exam-type-name {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.98);
    margin-bottom: 1px;
}

.aba-dashboard-cards-grid .aba-exam-type-desc {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.25;
}

.aba-dashboard-cards-grid .aba-exam-type-duration {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 10px;
    color: #111827;
    margin-top: 2px;
    align-self: flex-start;
    line-height: 1.2;
}

.aba-dashboard-cards-grid .aba-exam-type-duration .aba-duration-icon {
    width: 12px;
    height: 12px;
    min-width: 12px;
    min-height: 12px;
    max-width: 12px;
    max-height: 12px;
    flex-shrink: 0;
    display: block;
    color: #374151;
    opacity: 0.95;
}

.aba-full-exam-card .aba-exam-type-duration {
    align-self: flex-start;
}

.aba-dashboard-footer {
    display: flex;
    justify-content: center;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(255,255,255,0.08);
    flex-shrink: 0;
}

.aba-dashboard-footer .aba-btn {
    flex-shrink: 0;
}

/* Minimalist Start button */
.aba-dashboard-footer .aba-btn {
    background: #1f2328;
    color: #fff;
    border: none;
    padding: 12px 24px;
    font-size: 13px;
    font-weight: 500;
    border-radius: 8px;
}

.aba-dashboard-footer .aba-btn:hover:not(:disabled) {
    background: #2d3238;
    transform: none;
    box-shadow: none;
}

.aba-dashboard-footer .aba-btn:disabled {
    background: #d1d5db;
    color: #9ca3af;
    cursor: not-allowed;
}

/* Dark mode variables */
.aba-dark {
    --aba-surface: #1a1d24;
    --aba-white: #22262e;
    --aba-border: #363b47;
    --aba-gray-50: #2a2e36;
    --aba-gray-100: #363b47;
    --aba-gray-200: #4a5060;
    --aba-gray-500: #9ca3af;
    --aba-gray-600: #d1d5db;
    --aba-gray-700: #e5e7eb;
    --aba-gray-800: #f3f4f6;
    --aba-ice: #1e2430;
    --aba-navy: #5b8def;
    --aba-pale-blue: #1e2a47;
}

.aba-dark .aba-dashboard-sidebar,
.aba-dark .aba-sidebar-user:hover,
.aba-dark .aba-user-menu {
    background: var(--aba-white);
}

.aba-dark .aba-user-name,
.aba-dark .aba-sidebar-title {
    color: var(--aba-gray-800);
}

.aba-dark .aba-user-tier {
    color: var(--aba-gray-500);
}

.aba-dashboard-main .aba-dashboard-heading,
.aba-dashboard-main .aba-dashboard-subheading {
    color: #fff;
}

.aba-dark .aba-dashboard-main .aba-dashboard-bg {
    background-color: var(--aba-surface);
}

.aba-dark .aba-dashboard-main .aba-dashboard-overlay {
    background: rgb(0 0 0 / 39%);
}

.aba-dark .aba-dashboard-cards-grid .aba-exam-type-card {
    background: rgba(0, 0, 0, 0.45);
    border-color: rgba(255, 255, 255, 0.1);
}

.aba-dark .aba-dashboard-cards-grid .aba-exam-type-card.selected {
    background: rgba(91, 141, 239, 0.4);
}

.aba-dark .aba-user-menu-item {
    color: var(--aba-gray-700);
}

.aba-dark .aba-user-menu-item:hover {
    background: var(--aba-gray-50);
}

/* === HISTORY ITEMS: global (other views) === */
.aba-history-info {
    min-width: 0;
}

/* === SIDEBAR EXAM HISTORY (thin, dark, compact) === */
.aba-dashboard-sidebar .aba-history-list {
    gap: 4px;
}

.aba-dashboard-sidebar .aba-history-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 10px;
    background: transparent;
    border: none;
    border-radius: 4px;
    border-left: 2px solid transparent;
    transition: background 0.12s ease, border-left-color 0.12s ease;
}

.aba-dashboard-sidebar .aba-history-item:hover {
    background: rgba(255,255,255,0.06);
}

.aba-dashboard-sidebar .aba-history-item:not(:last-child) {
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.aba-dashboard-sidebar .aba-history-info {
    min-width: 0;
}

.aba-dashboard-sidebar .aba-history-type {
    font-weight: 500;
    font-size: 11px;
    color: rgba(255,255,255,0.88);
}

.aba-dashboard-sidebar .aba-history-date {
    font-size: 10px;
    color: rgba(255,255,255,0.4);
    margin-top: 1px;
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.aba-dashboard-sidebar .aba-history-score {
    font-size: 11px;
    font-weight: 600;
    color: rgba(255,255,255,0.6);
    flex-shrink: 0;
}

.aba-dashboard-sidebar .aba-badge {
    font-size: 9px;
    padding: 2px 5px;
}

.aba-dashboard-sidebar .aba-badge-green {
    background: rgba(34,197,94,0.2);
    color: #86efac;
}

.aba-dashboard-sidebar .aba-badge-yellow {
    background: rgba(234,179,8,0.2);
    color: #fde047;
}

.aba-dashboard-sidebar .aba-history-empty {
    font-size: 11px;
    color: rgba(255,255,255,0.4);
    text-align: center;
    padding: 12px 10px;
    margin: 0;
}

.aba-dashboard-sidebar .aba-history-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

/* History header + Edit button */
.aba-history-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}

.aba-history-header-actions {
    display: flex;
    align-items: center;
    gap: 4px;
}

.aba-history-bookmarks-btn {
    width: 28px;
    height: 28px;
    min-width: 28px;
    min-height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 6px;
    background: transparent;
    color: rgba(255,255,255,0.6);
    cursor: pointer;
}

.aba-history-bookmarks-btn:hover {
    background: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.9);
}

.aba-history-bookmarks-btn.active {
    background: rgba(234,179,8,0.2);
    color: #fde047;
}

.aba-history-edit-btn {
    font-size: 10px;
    font-weight: 600;
    color: rgba(255,255,255,0.7);
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 2px 6px;
    border-radius: 4px;
}

.aba-history-edit-btn:hover {
    color: #fff;
    background: rgba(255,255,255,0.1);
}

/* Edit bar (bulk delete) */
.aba-history-edit-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    margin-bottom: 8px;
    background: rgba(255,255,255,0.06);
    border-radius: 6px;
    font-size: 11px;
}

.aba-history-selected-count {
    color: rgba(255,255,255,0.6);
    flex: 1;
}

.aba-history-delete-selected-btn {
    font-size: 10px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 6px;
    border: 1px solid rgba(239,68,68,0.5);
    background: rgba(239,68,68,0.15);
    color: #fca5a5;
    cursor: pointer;
}

.aba-history-delete-selected-btn:hover:not(:disabled) {
    background: rgba(239,68,68,0.25);
}

.aba-history-delete-selected-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.aba-history-edit-done-btn {
    font-size: 10px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 6px;
    border: 1px solid rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.1);
    color: #fff;
    cursor: pointer;
}

.aba-history-edit-done-btn:hover {
    background: rgba(255,255,255,0.18);
}

/* Hover actions (bookmark + delete) - desktop: show on hover */
.aba-history-hover-actions {
    display: flex;
    align-items: center;
    gap: 4px;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.aba-history-item:hover .aba-history-hover-actions {
    opacity: 1;
}

.aba-history-bookmark-btn,
.aba-history-delete-btn {
    width: 28px;
    height: 28px;
    min-width: 28px;
    min-height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 6px;
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.8);
    cursor: pointer;
    font-size: 14px;
}

.aba-history-bookmark-btn:hover,
.aba-history-delete-btn:hover {
    background: rgba(255,255,255,0.15);
}

.aba-history-delete-btn:hover {
    background: rgba(239,68,68,0.2);
    color: #fca5a5;
}

/* Edit mode: checkbox visible */
.aba-history-checkbox-wrap {
    align-items: center;
}

.aba-history-edit-mode .aba-history-checkbox-wrap {
    display: flex !important;
    flex-shrink: 0;
    margin-right: 8px;
}

.aba-history-edit-mode .aba-history-item .aba-history-hover-actions {
    display: none;
}

.aba-history-checkbox-wrap input {
    width: 16px;
    height: 16px;
    cursor: pointer;
}

.aba-history-review-btn {
    padding: 4px 8px;
    font-size: 10px;
    font-weight: 600;
    border-radius: 6px;
    border: 1px solid rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.1);
    color: #fff;
    cursor: pointer;
}

.aba-history-review-btn:hover {
    background: rgba(255,255,255,0.18);
}

.aba-dashboard-sidebar .aba-skeleton {
    background: linear-gradient(90deg, rgba(255,255,255,0.05) 25%, rgba(255,255,255,0.08) 50%, rgba(255,255,255,0.05) 75%);
    border-radius: 4px;
}

/* === EXAM TYPE CARDS (dashboard) === */
.aba-exam-type-card {
    background: var(--aba-white);
    border: 2px solid var(--aba-border);
    border-radius: var(--aba-radius-lg);
    padding: 24px 20px;
    cursor: pointer;
    text-align: center;
    transition: all 0.2s ease;
}

.aba-exam-type-card:hover {
    border-color: var(--aba-navy);
    box-shadow: var(--aba-shadow);
    transform: translateY(-2px);
}

.aba-exam-type-card.selected {
    border-color: var(--aba-navy);
    background: var(--aba-ice);
    box-shadow: var(--aba-shadow-md);
}

/* === TOAST NOTIFICATION SYSTEM === */
.aba-toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 100000;
    display: flex;
    flex-direction: column;
    gap: 8px;
    pointer-events: none;
}
.aba-toast {
    pointer-events: auto;
    min-width: 280px;
    max-width: 420px;
    padding: 14px 20px 14px 16px;
    border-radius: 10px;
    font-size: 14px;
    line-height: 1.4;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.18);
    animation: aba-toast-in 0.35s ease;
    backdrop-filter: blur(12px);
}
.aba-toast.aba-toast-out {
    animation: aba-toast-out 0.3s ease forwards;
}
.aba-toast-icon { font-size: 18px; flex-shrink: 0; margin-top: 1px; }
.aba-toast-body { flex: 1; }
.aba-toast-title { font-weight: 600; margin-bottom: 2px; }
.aba-toast-msg { opacity: 0.85; font-size: 13px; }
.aba-toast-close {
    background: none; border: none; cursor: pointer; font-size: 16px; opacity: 0.5; padding: 0; margin-left: 4px; flex-shrink: 0;
}
.aba-toast-close:hover { opacity: 1; }

.aba-toast-success { background: rgba(34,197,94,0.95); color: #fff; }
.aba-toast-error   { background: rgba(239,68,68,0.95); color: #fff; }
.aba-toast-warning { background: rgba(245,158,11,0.95); color: #fff; }
.aba-toast-info    { background: rgba(59,130,246,0.95); color: #fff; }

.aba-btn-sm { padding: 6px 12px; font-size: 12px; }

/* Review section inside results (Ideal Answers) */
#aba-ideal-answers-block.aba-ideal-answers-block .aba-review-exchange,
.aba-ideal-answers-block .aba-review-exchange {
    padding: 0;
    margin-bottom: 16px;
    background: rgba(0, 0, 0, 0.22);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    overflow: hidden;
}
#aba-ideal-answers-block.aba-ideal-answers-block .aba-review-phase,
.aba-ideal-answers-block .aba-review-phase {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    padding: 10px 14px 8px;
    background: rgba(0, 0, 0, 0.15);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
#aba-ideal-answers-block.aba-ideal-answers-block .aba-review-section,
.aba-ideal-answers-block .aba-review-section {
    padding: 12px 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
#aba-ideal-answers-block.aba-ideal-answers-block .aba-review-section:last-child,
.aba-ideal-answers-block .aba-review-section:last-child {
    border-bottom: none;
}
#aba-ideal-answers-block.aba-ideal-answers-block .aba-review-section-label,
.aba-ideal-answers-block .aba-review-section-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(147, 197, 253, 0.9);
    margin-bottom: 6px;
}
#aba-ideal-answers-block.aba-ideal-answers-block .aba-review-section--ideal .aba-review-section-label,
.aba-ideal-answers-block .aba-review-section--ideal .aba-review-section-label {
    color: rgba(74, 222, 128, 0.95);
}
#aba-ideal-answers-block.aba-ideal-answers-block .aba-review-section-content,
.aba-ideal-answers-block .aba-review-section-content {
    font-size: 13px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.92);
    word-break: break-word;
}
#aba-ideal-answers-block.aba-ideal-answers-block .aba-review-section--ideal,
.aba-ideal-answers-block .aba-review-section--ideal {
    background: rgba(34, 197, 94, 0.06);
    border-left: 3px solid rgba(74, 222, 128, 0.45);
}
#aba-ideal-answers-block.aba-ideal-answers-block .aba-review-ideal-body,
.aba-ideal-answers-block .aba-review-ideal-body {
    min-height: 1.25em;
}
#aba-ideal-answers-block.aba-ideal-answers-block .aba-review-ideal-inline,
.aba-ideal-answers-block .aba-review-ideal-inline {
    font-size: 13px;
    line-height: 1.5;
    color: rgba(220, 252, 231, 0.95);
    white-space: pre-wrap;
    word-break: break-word;
}
#aba-ideal-answers-block.aba-ideal-answers-block .aba-review-ideal-loaded,
.aba-ideal-answers-block .aba-review-ideal-loaded {
    font-size: 13px;
    line-height: 1.5;
    color: rgba(220, 252, 231, 0.95);
    white-space: pre-wrap;
    word-break: break-word;
    margin-bottom: 8px;
}
#aba-ideal-answers-block.aba-ideal-answers-block .aba-review-ideal-missing,
.aba-ideal-answers-block .aba-review-ideal-missing {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.45);
    font-style: italic;
}
#aba-ideal-answers-block.aba-ideal-answers-block .aba-review-ideal-text,
.aba-ideal-answers-block .aba-review-ideal-text {
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 12px;
    color: rgba(34, 197, 94, 0.95);
}

#aba-per-question-scores-block .aba-per-question-row {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 13px;
}
#aba-per-question-scores-block .aba-per-question-row:last-child {
    border-bottom: none;
}
#aba-per-question-scores-block .aba-per-question-head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 6px;
}
#aba-per-question-scores-block .aba-per-question-label {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.92);
}
#aba-per-question-scores-block .aba-per-question-preview {
    font-size: 12px;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.72);
    word-break: break-word;
}
#aba-per-question-scores-block .aba-per-question-fb {
    margin-top: 6px;
    font-size: 11px;
    color: rgba(147, 197, 253, 0.9);
    font-style: italic;
}

@keyframes aba-toast-in {
    from { opacity: 0; transform: translateX(60px) scale(0.95); }
    to   { opacity: 1; transform: translateX(0) scale(1); }
}
@keyframes aba-toast-out {
    from { opacity: 1; transform: translateX(0) scale(1); }
    to   { opacity: 0; transform: translateX(60px) scale(0.95); }
}

.aba-access-summary {
    width: 100%;
    max-width: 460px;
    margin: 0 auto 8px;
    flex-shrink: 0;
}

.aba-access-summary-card {
    padding: 8px 10px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.14);
    background: rgba(7, 15, 35, 0.5);
    color: #fff;
    backdrop-filter: blur(6px);
}

.aba-access-summary-card-full {
    background: rgba(8, 73, 46, 0.62);
}

.aba-access-summary-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 6px;
}

.aba-access-summary-title {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.aba-access-summary-copy {
    font-size: 9px;
    line-height: 1.3;
    color: rgba(255,255,255,0.68);
}

.aba-access-summary-inline {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 6px;
    overflow-x: auto;
    white-space: nowrap;
    scrollbar-width: none;
}

.aba-access-summary-inline::-webkit-scrollbar {
    display: none;
}

.aba-access-summary-inline-item {
    display: inline-flex;
    align-items: baseline;
    gap: 4px;
    font-size: 10px;
    color: rgba(255,255,255,0.88);
}

.aba-access-summary-inline-item strong {
    font-size: 10px;
    font-weight: 700;
    color: #c4f3d7;
}

.aba-access-summary-inline-item.is-used strong {
    color: #f8b4b4;
}

.aba-access-summary-inline-label {
    color: rgba(255,255,255,0.64);
}

.aba-access-summary-link {
    display: inline-flex;
    align-items: center;
    color: rgba(255,255,255,0.82);
    font-size: 9px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
}

.aba-access-summary-copy-compact {
    font-size: 8px;
    color: rgba(255,255,255,0.54);
}

.aba-dashboard-cards-grid .aba-exam-type-card {
    position: relative;
}

.aba-exam-access-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    padding: 3px 7px;
    border-radius: 999px;
    background: rgba(255,255,255,0.14);
    color: rgba(255,255,255,0.94);
    font-size: 9px;
    font-weight: 700;
    line-height: 1;
}

.aba-exam-access-note {
    margin-top: 6px;
    font-size: 9px;
    line-height: 1.35;
    color: rgba(255,255,255,0.72);
}

.aba-dashboard-cards-grid .aba-exam-type-card.aba-exam-type-card-locked {
    opacity: 0.7;
    border-color: rgba(255,255,255,0.08);
}

.aba-dashboard-cards-grid .aba-exam-type-card.aba-exam-type-card-locked:hover,
.aba-dashboard-cards-grid .aba-exam-type-card.aba-exam-type-card-locked.selected {
    transform: none;
    box-shadow: none;
    background: rgba(0, 0, 0, 0.26);
}

