/* /Components/Layout/MainLayout.razor.rz.scp.css */
.ama-header[b-8dcmwcl7oq] {
    background: var(--ama-surface);
    border-bottom: 1px solid var(--ama-border-light);
    position: sticky;
    top: 0;
    z-index: 100;
}

.ama-header-inner[b-8dcmwcl7oq] {
    max-width: var(--ama-page-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--ama-space-md) var(--ama-space-lg);
    position: relative;
}

.ama-logo[b-8dcmwcl7oq] {
    display: flex;
    align-items: center;
    text-decoration: none;
}
.ama-logo:hover[b-8dcmwcl7oq] {
    text-decoration: none;
    opacity: 0.85;
}

.ama-logo-img[b-8dcmwcl7oq] {
    max-height: 45px;
    width: auto;
}

.ama-nav[b-8dcmwcl7oq] {
    display: flex;
    align-items: center;
    gap: var(--ama-space-lg);
}

.ama-nav-tools[b-8dcmwcl7oq] {
    display: flex;
    align-items: center;
    gap: var(--ama-space-md);
}

.ama-nav-link[b-8dcmwcl7oq] {
    font-size: var(--ama-text-sm);
    font-weight: 500;
    color: var(--ama-text-secondary);
    text-decoration: none;
    padding: var(--ama-space-xs) 0;
    border-bottom: 2px solid transparent;
    transition: all 0.15s ease;
}
.ama-nav-link:hover[b-8dcmwcl7oq] {
    color: var(--ama-brand);
    border-bottom-color: var(--ama-brand);
    text-decoration: none;
}

/* ---- Mobile hamburger menu ---- */
.ama-burger[b-8dcmwcl7oq] {
    display: none; /* hidden on desktop */
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 2px solid var(--ama-border);
    border-radius: var(--ama-radius-sm);
    background: var(--ama-surface);
    color: var(--ama-text-secondary);
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
}
.ama-burger[b-8dcmwcl7oq]::before { content: "\2630"; }                            /* ☰ */
.ama-header-inner.nav-open .ama-burger[b-8dcmwcl7oq]::before { content: "\2715"; } /* ✕ */
.ama-burger:hover[b-8dcmwcl7oq] { border-color: var(--ama-brand); color: var(--ama-brand); }

/* Desktop: the wrapper is transparent so search + nav stay as direct header
   items (original layout). Only on mobile does it become a dropdown panel. */
.ama-header-collapse[b-8dcmwcl7oq] { display: contents; }

@media (max-width: 860px) {
    .ama-burger[b-8dcmwcl7oq] { display: inline-flex; }
    .ama-header-collapse[b-8dcmwcl7oq] {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: stretch;
        gap: var(--ama-space-sm);
        background: var(--ama-surface);
        border-bottom: 1px solid var(--ama-border-light);
        box-shadow: var(--ama-shadow-lg);
        padding: var(--ama-space-md) var(--ama-space-lg) var(--ama-space-lg);
        max-height: calc(100vh - 72px);
        overflow-y: auto;
    }
    .ama-header-inner.nav-open .ama-header-collapse[b-8dcmwcl7oq] { display: flex; }
    .ama-nav[b-8dcmwcl7oq] {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        width: 100%;
    }
    /* language + theme toggles become a tidy row at the bottom */
    .ama-nav-tools[b-8dcmwcl7oq] {
        margin-top: var(--ama-space-sm);
        padding-top: var(--ama-space-md);
        border-top: 1px solid var(--ama-border-light);
        gap: var(--ama-space-lg);
    }
}

.ama-footer[b-8dcmwcl7oq] {
    border-top: 1px solid var(--ama-border-light);
    margin-top: var(--ama-space-3xl);
}

.ama-footer-inner[b-8dcmwcl7oq] {
    max-width: var(--ama-page-width);
    margin: 0 auto;
    padding: var(--ama-space-xl) var(--ama-space-lg);
    text-align: center;
    color: var(--ama-text-muted);
    font-size: var(--ama-text-sm);
}

.ama-footer-inner p[b-8dcmwcl7oq] {
    margin: 0;
}

.ama-lang-toggle[b-8dcmwcl7oq] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: var(--ama-radius-sm);
    border: 2px solid var(--ama-border);
    background: var(--ama-surface);
    color: var(--ama-text-secondary);
    font-weight: 700;
    font-size: var(--ama-text-xs);
    cursor: pointer;
    transition: all 0.15s ease;
    font-family: var(--ama-font);
}
.ama-lang-toggle:hover[b-8dcmwcl7oq] {
    border-color: var(--ama-brand);
    color: var(--ama-brand);
    background: var(--ama-brand-subtle);
}

#blazor-error-ui .dismiss[b-8dcmwcl7oq] {
    cursor: pointer;
    position: absolute;
    right: 0.75rem;
    top: 0.5rem;
}

.ama-error-panel[b-8dcmwcl7oq] {
    max-width: 480px;
    margin: var(--ama-space-3xl) auto;
    padding: var(--ama-space-xl);
    text-align: center;
    background: var(--ama-surface);
    border: 2px solid var(--ama-border-light);
    border-radius: var(--ama-radius-lg);
}

.ama-error-panel h2[b-8dcmwcl7oq] {
    margin: 0 0 var(--ama-space-sm);
    font-size: var(--ama-text-lg);
    color: var(--ama-text-primary);
}

.ama-error-panel p[b-8dcmwcl7oq] {
    margin: 0 0 var(--ama-space-lg);
    color: var(--ama-text-secondary);
    font-size: var(--ama-text-sm);
}

.ama-btn-retry[b-8dcmwcl7oq] {
    display: inline-block;
    padding: var(--ama-space-sm) var(--ama-space-lg);
    background: var(--ama-brand);
    color: white;
    border: none;
    border-radius: var(--ama-radius-sm);
    font-weight: 600;
    cursor: pointer;
    font-family: var(--ama-font);
    font-size: var(--ama-text-sm);
    transition: opacity 0.15s ease;
}

.ama-btn-retry:hover[b-8dcmwcl7oq] {
    opacity: 0.85;
}
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-56htx3yb2l],
.components-reconnect-repeated-attempt-visible[b-56htx3yb2l],
.components-reconnect-failed-visible[b-56htx3yb2l],
.components-pause-visible[b-56htx3yb2l],
.components-resume-failed-visible[b-56htx3yb2l],
.components-rejoining-animation[b-56htx3yb2l] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-56htx3yb2l],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-56htx3yb2l],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-56htx3yb2l],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-56htx3yb2l],
#components-reconnect-modal.components-reconnect-retrying[b-56htx3yb2l],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-56htx3yb2l],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-56htx3yb2l],
#components-reconnect-modal.components-reconnect-failed[b-56htx3yb2l],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-56htx3yb2l] {
    display: block;
}


#components-reconnect-modal[b-56htx3yb2l] {
    background-color: white;
    width: 20rem;
    margin: 20vh auto;
    padding: 2rem;
    border: 0;
    border-radius: 0.5rem;
    box-shadow: 0 3px 6px 2px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: display 0.5s allow-discrete, overlay 0.5s allow-discrete;
    animation: components-reconnect-modal-fadeOutOpacity-b-56htx3yb2l 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-56htx3yb2l 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-56htx3yb2l 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-56htx3yb2l]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-56htx3yb2l 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-56htx3yb2l {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-56htx3yb2l {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-56htx3yb2l {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-56htx3yb2l] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-56htx3yb2l] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-56htx3yb2l] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-56htx3yb2l] {
        background-color: #3b6ea2;
    }

    #components-reconnect-modal button:active[b-56htx3yb2l] {
        background-color: #6b9ed2;
    }

.components-rejoining-animation[b-56htx3yb2l] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-56htx3yb2l] {
        position: absolute;
        border: 3px solid #0087ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-56htx3yb2l 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-56htx3yb2l] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-56htx3yb2l {
    0% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    4.9% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    5% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        top: 0px;
        left: 0px;
        width: 80px;
        height: 80px;
        opacity: 0;
    }
}
/* /Components/Shared/BookmarkButton.razor.rz.scp.css */
.ama-bookmark-btn[b-c6kgh5twhk] {
    background: none;
    border: none;
    font-size: 1.4rem;
    cursor: pointer;
    color: var(--ama-text-muted);
    padding: var(--ama-space-xxs);
    transition: color 0.15s ease, transform 0.15s ease;
    font-family: var(--ama-font);
}

.ama-bookmark-btn:hover[b-c6kgh5twhk] {
    color: var(--ama-gold);
    transform: scale(1.15);
}

.ama-bookmark-btn--active[b-c6kgh5twhk] {
    color: var(--ama-gold);
}
/* /Components/Shared/ConfettiEffect.razor.rz.scp.css */
.ama-confetti-container[b-x31cix09gt] {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9999;
    overflow: hidden;
}

.ama-confetti-piece[b-x31cix09gt] {
    position: absolute;
    top: -20px;
    border-radius: 2px;
    animation: ama-confetti-fall-b-x31cix09gt linear forwards;
}

@keyframes ama-confetti-fall-b-x31cix09gt {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) rotate(720deg);
        opacity: 0;
    }
}

.ama-confetti-c0[b-x31cix09gt] { background: #FF6B6B; }
.ama-confetti-c1[b-x31cix09gt] { background: #4ECDC4; }
.ama-confetti-c2[b-x31cix09gt] { background: #FFE66D; }
.ama-confetti-c3[b-x31cix09gt] { background: #A78BFA; }
.ama-confetti-c4[b-x31cix09gt] { background: #2F6B53; }
.ama-confetti-c5[b-x31cix09gt] { background: #F97316; }
/* /Components/Shared/CurriculumMap.razor.rz.scp.css */
.ama-curriculum-map[b-xr7gv9885s] {
    background: var(--ama-surface);
    border: 1px solid var(--ama-border-light);
    border-radius: var(--ama-radius-lg);
    padding: var(--ama-space-lg);
    margin-top: var(--ama-space-lg);
}

.ama-curriculum-map-title[b-xr7gv9885s] {
    margin: 0 0 var(--ama-space-sm);
    font-size: var(--ama-text-lg);
}

.ama-curriculum-map-legend[b-xr7gv9885s] {
    display: flex;
    gap: var(--ama-space-md);
    font-size: var(--ama-text-xs);
    color: var(--ama-text-secondary);
    margin-bottom: var(--ama-space-md);
}

.ama-curriculum-dot[b-xr7gv9885s] {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-right: 4px;
    vertical-align: middle;
}

.ama-curriculum-dot--complete[b-xr7gv9885s] { background: var(--ama-success); }
.ama-curriculum-dot--progress[b-xr7gv9885s] { background: var(--ama-warning); }
.ama-curriculum-dot--not-started[b-xr7gv9885s] { background: var(--ama-border); }

.ama-curriculum-map-grid[b-xr7gv9885s] {
    display: flex;
    flex-direction: column;
    gap: var(--ama-space-xs);
}

.ama-curriculum-item[b-xr7gv9885s] {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--ama-space-xs) var(--ama-space-sm);
    border-radius: var(--ama-radius-sm);
    background: var(--ama-surface-alt);
    overflow: hidden;
    font-size: var(--ama-text-sm);
}

.ama-curriculum-item-bar[b-xr7gv9885s] {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    opacity: 0.15;
    transition: width 0.3s ease;
}

.ama-curriculum-item--complete .ama-curriculum-item-bar[b-xr7gv9885s] { background: var(--ama-success); }
.ama-curriculum-item--progress .ama-curriculum-item-bar[b-xr7gv9885s] { background: var(--ama-warning); }

.ama-curriculum-item-name[b-xr7gv9885s] {
    position: relative;
    z-index: 1;
    flex: 1;
    color: var(--ama-text);
}

.ama-curriculum-item-pct[b-xr7gv9885s] {
    position: relative;
    z-index: 1;
    font-weight: 600;
    font-size: var(--ama-text-xs);
    min-width: 36px;
    text-align: right;
}

.ama-curriculum-item--complete .ama-curriculum-item-pct[b-xr7gv9885s] { color: var(--ama-success); }
.ama-curriculum-item--progress .ama-curriculum-item-pct[b-xr7gv9885s] { color: var(--ama-warning); }
.ama-curriculum-item--not-started .ama-curriculum-item-pct[b-xr7gv9885s] { color: var(--ama-text-muted); }

.ama-curriculum-summary[b-xr7gv9885s] {
    margin-top: var(--ama-space-md);
    text-align: center;
    font-size: var(--ama-text-sm);
    color: var(--ama-text-secondary);
    padding-top: var(--ama-space-sm);
    border-top: 1px solid var(--ama-border-light);
}
/* /Components/Shared/ExamCountdown.razor.rz.scp.css */
.ama-exam-countdown[b-8j28b1y2d6] {
    background: var(--ama-surface);
    border: 2px solid var(--ama-border-light);
    border-radius: var(--ama-radius-lg);
    padding: var(--ama-space-lg);
    text-align: center;
}

.ama-countdown-hero[b-8j28b1y2d6] {
    margin-bottom: var(--ama-space-md);
}

.ama-countdown-days[b-8j28b1y2d6] {
    font-size: 48px;
    font-weight: 800;
    color: var(--ama-brand);
    line-height: 1;
}

.ama-countdown-label[b-8j28b1y2d6] {
    font-size: var(--ama-text-sm);
    color: var(--ama-text-secondary);
    margin-top: var(--ama-space-xxs);
}

.ama-countdown-calendar[b-8j28b1y2d6] {
    text-align: left;
    margin-top: var(--ama-space-md);
    border-top: 1px solid var(--ama-border-light);
    padding-top: var(--ama-space-md);
}

.ama-countdown-row[b-8j28b1y2d6] {
    display: flex;
    align-items: center;
    gap: var(--ama-space-sm);
    padding: var(--ama-space-xs) 0;
    font-size: var(--ama-text-sm);
}

.ama-countdown-row--past[b-8j28b1y2d6] {
    opacity: 0.5;
    text-decoration: line-through;
}

.ama-countdown-date[b-8j28b1y2d6] {
    font-weight: 600;
    min-width: 60px;
    color: var(--ama-text);
}

.ama-countdown-name[b-8j28b1y2d6] {
    flex: 1;
    color: var(--ama-text-secondary);
}

.ama-countdown-badge[b-8j28b1y2d6] {
    font-size: var(--ama-text-xs);
    font-weight: 600;
    color: var(--ama-brand);
    background: var(--ama-brand-light);
    padding: 2px 8px;
    border-radius: var(--ama-radius-sm);
}

.ama-countdown-toggle[b-8j28b1y2d6] {
    margin-top: var(--ama-space-sm);
    background: none;
    border: none;
    color: var(--ama-brand);
    font-size: var(--ama-text-sm);
    font-weight: 600;
    cursor: pointer;
    font-family: var(--ama-font);
}

.ama-countdown-toggle:hover[b-8j28b1y2d6] {
    text-decoration: underline;
}
/* /Components/Shared/MascotHelper.razor.rz.scp.css */
.ama-mascot[b-yeql8sebtb] {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    align-items: flex-end;
    gap: var(--ama-space-xs);
    z-index: 500;
    max-width: 320px;
    animation: ama-mascot-slide-up-b-yeql8sebtb 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes ama-mascot-slide-up-b-yeql8sebtb {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.ama-mascot-bubble[b-yeql8sebtb] {
    background: var(--ama-surface);
    border: 2px solid var(--ama-border-light);
    border-radius: var(--ama-radius-lg);
    padding: var(--ama-space-md);
    box-shadow: var(--ama-shadow-lg);
    position: relative;
    flex: 1;
}

.ama-mascot-bubble[b-yeql8sebtb]::after {
    content: '';
    position: absolute;
    bottom: 12px;
    right: -10px;
    width: 0;
    height: 0;
    border-left: 10px solid var(--ama-surface);
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
}

.ama-mascot-dismiss[b-yeql8sebtb] {
    position: absolute;
    top: 6px;
    right: 8px;
    background: none;
    border: none;
    font-size: 14px;
    color: var(--ama-text-muted);
    cursor: pointer;
    padding: 2px 6px;
    border-radius: 4px;
    z-index: 1;
}

.ama-mascot-dismiss:hover[b-yeql8sebtb] {
    background: var(--ama-surface-alt);
}

.ama-mascot-text[b-yeql8sebtb] {
    margin: 0 0 var(--ama-space-sm);
    font-size: var(--ama-text-sm);
    color: var(--ama-text);
    line-height: 1.5;
    padding-right: var(--ama-space-md);
}

.ama-mascot-actions[b-yeql8sebtb] {
    display: flex;
    flex-direction: column;
    gap: var(--ama-space-xxs);
}

.ama-mascot-action-btn[b-yeql8sebtb] {
    display: flex;
    align-items: center;
    gap: var(--ama-space-xs);
    padding: var(--ama-space-xs) var(--ama-space-sm);
    background: var(--ama-surface-alt);
    border: 1px solid var(--ama-border-light);
    border-radius: var(--ama-radius-sm);
    font-size: var(--ama-text-xs);
    font-family: var(--ama-font);
    color: var(--ama-text);
    cursor: pointer;
    transition: all 0.15s ease;
    text-align: left;
}

.ama-mascot-action-btn:hover[b-yeql8sebtb] {
    background: var(--ama-brand-light);
    border-color: var(--ama-brand);
    color: var(--ama-brand);
}

.ama-mascot-faq-toggle[b-yeql8sebtb] {
    display: block;
    margin-top: var(--ama-space-xs);
    background: none;
    border: none;
    color: var(--ama-brand);
    font-size: var(--ama-text-xs);
    font-family: var(--ama-font);
    cursor: pointer;
    padding: 0;
    font-weight: 600;
}

.ama-mascot-faq-toggle:hover[b-yeql8sebtb] {
    text-decoration: underline;
}

.ama-mascot-faqs[b-yeql8sebtb] {
    display: flex;
    flex-direction: column;
    gap: var(--ama-space-xxs);
}

.ama-mascot-faq-q[b-yeql8sebtb] {
    display: block;
    width: 100%;
    padding: var(--ama-space-xs) var(--ama-space-sm);
    background: var(--ama-surface-alt);
    border: 1px solid var(--ama-border-light);
    border-radius: var(--ama-radius-sm);
    font-size: var(--ama-text-xs);
    font-family: var(--ama-font);
    color: var(--ama-text);
    cursor: pointer;
    text-align: left;
    transition: all 0.15s ease;
}

.ama-mascot-faq-q:hover[b-yeql8sebtb],
.ama-mascot-faq-q.active[b-yeql8sebtb] {
    background: var(--ama-brand-light);
    border-color: var(--ama-brand);
}

.ama-mascot-faq-a[b-yeql8sebtb] {
    padding: var(--ama-space-sm);
    background: var(--ama-brand-light);
    border-radius: var(--ama-radius-sm);
    font-size: var(--ama-text-xs);
    color: var(--ama-text);
    line-height: 1.5;
    animation: ama-mascot-slide-up-b-yeql8sebtb 0.2s ease forwards;
}

.ama-mascot-img[b-yeql8sebtb] {
    width: 56px;
    height: auto;
    flex-shrink: 0;
    animation: ama-mascot-bounce-b-yeql8sebtb 2s ease-in-out infinite;
}

@keyframes ama-mascot-bounce-b-yeql8sebtb {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

@media (max-width: 640px) {
    .ama-mascot[b-yeql8sebtb] {
        bottom: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
    }
    .ama-mascot-img[b-yeql8sebtb] {
        width: 48px;
    }
}
/* /Components/Shared/Office/RelationshipDiagram.razor.rz.scp.css */
.ama-rel-canvas[b-xpjx83gy21] {
    position: relative;
    min-height: 500px;
    background: #f8f9fa;
    background-image: radial-gradient(circle, #ddd 1px, transparent 1px);
    background-size: 20px 20px;
    overflow: auto;
    border: 1px solid var(--ama-border);
    border-radius: var(--ama-radius);
}

.ama-rel-table[b-xpjx83gy21] {
    position: absolute;
    width: 240px;
    background: white;
    border: 2px solid #4472C4;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
    cursor: grab;
    z-index: 2;
    user-select: none;
}

.ama-rel-table:active[b-xpjx83gy21] {
    cursor: grabbing;
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}

.ama-rel-table-header[b-xpjx83gy21] {
    background: #4472C4;
    color: white;
    font-weight: 700;
    font-size: 13px;
    padding: 6px 10px;
    border-radius: 4px 4px 0 0;
}

.ama-rel-table-fields[b-xpjx83gy21] {
    padding: 2px 0;
}

.ama-rel-field[b-xpjx83gy21] {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    font-size: 12px;
    border-bottom: 1px solid #f0f0f0;
}

.ama-rel-field:last-child[b-xpjx83gy21] {
    border-bottom: none;
}

.ama-rel-field--pk[b-xpjx83gy21] {
    background: #f0f4ff;
    font-weight: 600;
}

.ama-rel-pk-icon[b-xpjx83gy21] {
    font-size: 11px;
}

.ama-rel-field-name[b-xpjx83gy21] {
    flex: 1;
    color: #333;
}

.ama-rel-field-type[b-xpjx83gy21] {
    font-size: 11px;
    color: #888;
    text-transform: uppercase;
}
/* /Components/Shared/ReportIssueButton.razor.rz.scp.css */
.ama-report-btn[b-fkxrim8ews] {
    background: none;
    border: 1px solid var(--ama-border);
    border-radius: var(--ama-radius-sm);
    padding: var(--ama-space-xxs) var(--ama-space-sm);
    font-size: var(--ama-text-xs);
    color: var(--ama-text-muted);
    cursor: pointer;
    font-family: var(--ama-font);
    transition: all 0.15s ease;
}
.ama-report-btn:hover[b-fkxrim8ews] { border-color: var(--ama-danger); color: var(--ama-danger); }
.ama-report-overlay[b-fkxrim8ews] { position: fixed; inset: 0; background: rgba(0,0,0,0.5); display: flex; align-items: center; justify-content: center; z-index: 1000; }
.ama-report-modal[b-fkxrim8ews] { background: var(--ama-surface); border-radius: var(--ama-radius-lg); padding: var(--ama-space-xl); max-width: 480px; width: 90%; box-shadow: var(--ama-shadow-lg); }
.ama-report-modal h3[b-fkxrim8ews] { margin: 0 0 var(--ama-space-md); }
.ama-report-label[b-fkxrim8ews] { display: block; font-size: var(--ama-text-sm); font-weight: 600; margin-bottom: var(--ama-space-xxs); margin-top: var(--ama-space-sm); color: var(--ama-text); }
.ama-report-select[b-fkxrim8ews], .ama-report-textarea[b-fkxrim8ews] { width: 100%; padding: var(--ama-space-sm); border: 1px solid var(--ama-border); border-radius: var(--ama-radius-sm); font-family: var(--ama-font); font-size: var(--ama-text-sm); background: var(--ama-bg); color: var(--ama-text); }
.ama-report-textarea[b-fkxrim8ews] { min-height: 100px; resize: vertical; }
.ama-report-submit-btn[b-fkxrim8ews] { padding: var(--ama-space-xs) var(--ama-space-md); background: var(--ama-brand); color: white; border: none; border-radius: var(--ama-radius-sm); font-family: var(--ama-font); font-weight: 600; cursor: pointer; }
.ama-report-submit-btn:disabled[b-fkxrim8ews] { opacity: 0.5; cursor: not-allowed; }
.ama-report-close-btn[b-fkxrim8ews] { padding: var(--ama-space-xs) var(--ama-space-md); background: transparent; border: 1px solid var(--ama-border); color: var(--ama-text); border-radius: var(--ama-radius-sm); font-family: var(--ama-font); font-weight: 600; cursor: pointer; }
/* /Components/Shared/SearchBar.razor.rz.scp.css */
.ama-search-wrapper[b-odolscdjv2] {
    position: relative;
}

.ama-search-input[b-odolscdjv2] {
    width: 200px;
    padding: var(--ama-space-xs) var(--ama-space-sm);
    border: 1px solid var(--ama-border);
    border-radius: var(--ama-radius-sm);
    font-family: var(--ama-font);
    font-size: var(--ama-text-sm);
    background: var(--ama-bg);
    color: var(--ama-text);
    transition: width 0.2s ease, border-color 0.15s ease;
}

.ama-search-input:focus[b-odolscdjv2] {
    width: 280px;
    border-color: var(--ama-brand);
    outline: none;
}

.ama-search-results[b-odolscdjv2] {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    min-width: 320px;
    background: var(--ama-surface);
    border: 1px solid var(--ama-border);
    border-radius: var(--ama-radius-sm);
    box-shadow: var(--ama-shadow-lg);
    z-index: 200;
    max-height: 400px;
    overflow-y: auto;
    margin-top: 4px;
}

.ama-search-result[b-odolscdjv2] {
    display: flex;
    align-items: center;
    gap: var(--ama-space-sm);
    padding: var(--ama-space-sm) var(--ama-space-md);
    text-decoration: none;
    color: var(--ama-text);
    border-bottom: 1px solid var(--ama-border-light);
    transition: background 0.1s ease;
}

.ama-search-result:hover[b-odolscdjv2] {
    background: var(--ama-surface-alt);
}

.ama-search-type[b-odolscdjv2] {
    font-size: var(--ama-text-xs);
    font-weight: 700;
    text-transform: uppercase;
    min-width: 60px;
}

.ama-search-title[b-odolscdjv2] {
    flex: 1;
    font-size: var(--ama-text-sm);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ama-search-subject[b-odolscdjv2] {
    font-size: var(--ama-text-xs);
    color: var(--ama-text-muted);
}
/* /Components/Shared/SkeletonCard.razor.rz.scp.css */
.ama-skeleton-card[b-8a7atawhaf] {
    background: var(--ama-surface);
    border: 1px solid var(--ama-border-light);
    border-radius: var(--ama-radius);
    padding: var(--ama-space-lg);
}

.ama-skeleton-line[b-8a7atawhaf] {
    height: 16px;
    background: linear-gradient(90deg, var(--ama-surface-alt) 25%, var(--ama-border-light) 50%, var(--ama-surface-alt) 75%);
    background-size: 200% 100%;
    animation: skeleton-pulse-b-8a7atawhaf 1.5s ease-in-out infinite;
    border-radius: 4px;
    margin-bottom: var(--ama-space-sm);
}

.ama-skeleton-line--title[b-8a7atawhaf] {
    height: 24px;
    width: 60%;
}

.ama-skeleton-line--text[b-8a7atawhaf] {
    width: 90%;
}

.ama-skeleton-line--short[b-8a7atawhaf] {
    width: 40%;
}

@keyframes skeleton-pulse-b-8a7atawhaf {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}
/* /Components/Shared/StudyTimer.razor.rz.scp.css */
.ama-study-timer[b-trcu2nyedm] {
    background: var(--ama-surface);
    border: 2px solid var(--ama-border-light);
    border-radius: var(--ama-radius-lg);
    overflow: hidden;
    transition: border-color 0.2s ease;
}

.ama-study-timer--active[b-trcu2nyedm] {
    border-color: var(--ama-brand);
}

.ama-study-timer--break[b-trcu2nyedm] {
    border-color: var(--ama-info);
}

.ama-timer-header[b-trcu2nyedm] {
    display: flex;
    align-items: center;
    gap: var(--ama-space-sm);
    padding: var(--ama-space-sm) var(--ama-space-md);
    cursor: pointer;
    user-select: none;
}

.ama-timer-icon[b-trcu2nyedm] {
    font-size: 1.2rem;
}

.ama-timer-label[b-trcu2nyedm] {
    font-weight: 600;
    font-size: var(--ama-text-sm);
    color: var(--ama-text);
}

.ama-timer-display[b-trcu2nyedm] {
    font-family: var(--ama-font-mono);
    font-weight: 700;
    font-size: var(--ama-text-sm);
    color: var(--ama-brand);
    margin-left: auto;
}

.ama-timer-toggle[b-trcu2nyedm] {
    font-size: var(--ama-text-xs);
    color: var(--ama-text-muted);
}

.ama-timer-body[b-trcu2nyedm] {
    padding: var(--ama-space-md) var(--ama-space-lg) var(--ama-space-lg);
    text-align: center;
    border-top: 1px solid var(--ama-border-light);
}

.ama-timer-time[b-trcu2nyedm] {
    font-family: var(--ama-font-mono);
    font-size: 48px;
    font-weight: 800;
    color: var(--ama-text);
    line-height: 1;
    margin-bottom: var(--ama-space-md);
}

.ama-study-timer--break .ama-timer-time[b-trcu2nyedm] {
    color: var(--ama-info);
}

.ama-timer-progress[b-trcu2nyedm] {
    height: 6px;
    background: var(--ama-surface-alt);
    border-radius: 3px;
    margin-bottom: var(--ama-space-md);
    overflow: hidden;
}

.ama-timer-progress-fill[b-trcu2nyedm] {
    height: 100%;
    background: var(--ama-brand);
    border-radius: 3px;
    transition: width 1s linear;
}

.ama-study-timer--break .ama-timer-progress-fill[b-trcu2nyedm] {
    background: var(--ama-info);
}

.ama-timer-controls[b-trcu2nyedm] {
    display: flex;
    gap: var(--ama-space-sm);
    justify-content: center;
    margin-bottom: var(--ama-space-sm);
}

.ama-timer-btn[b-trcu2nyedm] {
    padding: var(--ama-space-xs) var(--ama-space-lg);
    border-radius: var(--ama-radius-sm);
    border: none;
    font-family: var(--ama-font);
    font-size: var(--ama-text-sm);
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.15s ease;
}

.ama-timer-btn:hover[b-trcu2nyedm] {
    opacity: 0.85;
}

.ama-timer-btn--start[b-trcu2nyedm] {
    background: var(--ama-brand);
    color: white;
}

.ama-timer-btn--pause[b-trcu2nyedm] {
    background: var(--ama-warning);
    color: white;
}

.ama-timer-btn--reset[b-trcu2nyedm] {
    background: var(--ama-surface-alt);
    color: var(--ama-text-secondary);
}

.ama-timer-sessions[b-trcu2nyedm] {
    font-size: var(--ama-text-xs);
    color: var(--ama-text-muted);
}
/* /Components/Shared/WhatsAppShareButton.razor.rz.scp.css */
.ama-whatsapp-btn[b-b29yn6kswx] {
    display: inline-flex;
    align-items: center;
    gap: var(--ama-space-xs);
    padding: var(--ama-space-xs) var(--ama-space-md);
    background: #25D366;
    color: white;
    border-radius: var(--ama-radius-sm);
    text-decoration: none;
    font-size: var(--ama-text-sm);
    font-weight: 600;
    font-family: var(--ama-font);
    transition: opacity 0.15s ease;
}

.ama-whatsapp-btn:hover[b-b29yn6kswx] {
    opacity: 0.85;
    color: white;
    text-decoration: none;
}
