/* /Components/Features/AchievementsPage.razor.rz.scp.css */
/* ── Header ──────────────────────────────────────────────────────────────── */
.ach-header[b-w5e2hasiuu] {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: var(--bs-tertiary-bg, #1a1a2e);
    border: 1px solid var(--bs-border-color, rgba(255,255,255,.1));
    border-radius: 14px;
    padding: 1.25rem 1.5rem;
}

.ach-level-badge[b-w5e2hasiuu] {
    display: flex;
    align-items: center;
    gap: .75rem;
    flex-shrink: 0;
}
.ach-level-icon[b-w5e2hasiuu] { font-size: 2.5rem; line-height: 1; }
.ach-level-num[b-w5e2hasiuu]  { font-size: .7rem; color: var(--bs-secondary-color, rgba(255,255,255,.5)); text-transform: uppercase; letter-spacing: .1em; }
.ach-level-title[b-w5e2hasiuu] { font-size: 1.05rem; font-weight: 700; color: var(--bs-body-color, #fff); }

.ach-xp-block[b-w5e2hasiuu] { flex: 1; }
.ach-xpbar-track[b-w5e2hasiuu] {
    height: 8px;
    background: var(--bs-secondary-bg, rgba(255,255,255,.1));
    border-radius: 4px;
    overflow: hidden;
}
.ach-xpbar-fill[b-w5e2hasiuu] {
    height: 100%;
    background: linear-gradient(90deg, #a29bfe, #ffd700);
    border-radius: 4px;
    transition: width .8s ease;
}

.ach-xp-range[b-w5e2hasiuu] {
    font-size: .75rem;
    color: var(--bs-secondary-color, rgba(255,255,255,.6));
}

.ach-earned-summary[b-w5e2hasiuu] { flex-shrink: 0; text-align: right; }
.ach-earned-num[b-w5e2hasiuu]   { font-size: 1.5rem; font-weight: 800; color: #ffd700; }
.ach-earned-label[b-w5e2hasiuu] { font-size: .72rem; color: var(--bs-secondary-color, rgba(255,255,255,.5)); display: block; }

/* ── Workflow section ────────────────────────────────────────────────────── */
.ach-workflow-title[b-w5e2hasiuu] {
    font-size: 1rem;
    font-weight: 700;
    color: var(--bs-body-color, #fff);
}

/* ── Achievement progress track ─────────────────────────────────────────── */
.ach-track[b-w5e2hasiuu] {
    display: flex;
    gap: .5rem;
    flex-wrap: wrap;
}

.ach-step[b-w5e2hasiuu] {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 90px;
    padding: .6rem .4rem;
    border-radius: 10px;
    border: 1px solid var(--bs-border-color, rgba(255,255,255,.08));
    background: var(--bs-secondary-bg, rgba(255,255,255,.04));
    cursor: pointer;
    transition: transform .15s, box-shadow .15s;
    text-align: center;
}
.ach-step:hover[b-w5e2hasiuu] { transform: translateY(-2px); box-shadow: 0 4px 16px rgba(0,0,0,.2); }

.ach-step-locked[b-w5e2hasiuu] {
    opacity: .4;
    filter: grayscale(1);
}
.ach-step-earned[b-w5e2hasiuu] {
    background: linear-gradient(135deg, rgba(162,155,254,.15), rgba(255,215,0,.08));
    border-color: rgba(162,155,254,.3);
}
.ach-step-earned.anim-rare[b-w5e2hasiuu]      { border-color: rgba(162,155,254,.5); }
.ach-step-earned.anim-epic[b-w5e2hasiuu]      { border-color: rgba(253,121,168,.5); background: linear-gradient(135deg, rgba(253,121,168,.1), rgba(0,184,148,.1)); }
.ach-step-earned.anim-legendary[b-w5e2hasiuu] { border-color: rgba(255,215,0,.6); background: linear-gradient(135deg, rgba(255,215,0,.15), rgba(255,159,67,.1)); box-shadow: 0 0 12px rgba(255,215,0,.2); }

.ach-step-icon[b-w5e2hasiuu] { font-size: 1.6rem; line-height: 1.2; }
.ach-step-name[b-w5e2hasiuu] { font-size: .65rem; color: var(--bs-body-color, rgba(255,255,255,.8)); line-height: 1.3; margin-top: .2rem; word-break: break-word; }
.ach-step-xp[b-w5e2hasiuu]   { font-size: .6rem; color: #ffd700; font-weight: 700; margin-top: .15rem; }

/* ── Guidance modal ──────────────────────────────────────────────────────── */
.ach-guidance-overlay[b-w5e2hasiuu] {
    position: fixed;
    inset: 0;
    z-index: 99000;
    background: rgba(0,0,0,.6);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(3px);
}
.ach-guidance-card[b-w5e2hasiuu] {
    background: var(--bs-card-bg, #1a1a2e);
    border: 1px solid var(--bs-border-color, rgba(255,255,255,.12));
    border-radius: 14px;
    padding: 1.75rem;
    max-width: 400px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0,0,0,.4);
    animation: guidancePop-b-w5e2hasiuu .3s cubic-bezier(.175,.885,.32,1.275) both;
}
@keyframes guidancePop-b-w5e2hasiuu {
    from { transform: scale(.85); opacity: 0; }
    to   { transform: scale(1);   opacity: 1; }
}
.ach-guidance-icon[b-w5e2hasiuu]  { font-size: 3rem; line-height: 1.2; }
.ach-guidance-title[b-w5e2hasiuu] { font-size: 1.2rem; font-weight: 700; color: var(--bs-body-color, #fff); margin: .4rem 0 .1rem; }
.ach-guidance-earned-badge[b-w5e2hasiuu] { color: #00b894; font-size: .8rem; font-weight: 700; margin-bottom: .5rem; }
.ach-guidance-desc[b-w5e2hasiuu]  { font-size: .82rem; color: var(--bs-secondary-color, rgba(255,255,255,.65)); }
.ach-guidance-hint[b-w5e2hasiuu]  {
    background: rgba(162,155,254,.12);
    border: 1px solid rgba(162,155,254,.2);
    border-radius: 8px;
    padding: .65rem .85rem;
    font-size: .78rem;
    color: var(--bs-body-color, rgba(255,255,255,.8));
    text-align: left;
    margin-top: .75rem;
}
/* /Components/Features/AdminPromoVideo.razor.rz.scp.css */
/* ── Slideshow Player ────────────────────────────────────────────────────── */

.promo-player-overlay[b-xrehdo5cdm] {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: #000;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: stretch;
    overflow: hidden;
}

.promo-player-slide-wrap[b-xrehdo5cdm] {
    position: relative;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 0;
}

.promo-player-img[b-xrehdo5cdm] {
    max-width: 100%;
    max-height: calc(100vh - 72px);
    object-fit: contain;
    display: block;
    user-select: none;
}

/* Banner overlay on slide */
.promo-player-banner[b-xrehdo5cdm] {
    position: absolute;
    left: 0;
    right: 0;
    padding: .75rem 2.5rem;
    background: rgba(0, 0, 0, .72);
    font-size: 1.15rem;
    font-weight: 600;
    color: #fff;
    text-align: center;
    letter-spacing: .03em;
    backdrop-filter: blur(6px);
}
.promo-player-banner-top[b-xrehdo5cdm]    { top: 0; }
.promo-player-banner-center[b-xrehdo5cdm] { top: 50%; transform: translateY(-50%); }
.promo-player-banner-bottom[b-xrehdo5cdm] { bottom: 72px; }

/* HUD: slide counter + caption at top */
.promo-player-hud[b-xrehdo5cdm] {
    position: absolute;
    top: .75rem;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .35rem;
    pointer-events: none;
    z-index: 10;
}

.promo-player-counter[b-xrehdo5cdm] {
    background: rgba(0, 0, 0, .55);
    color: rgba(255, 255, 255, .75);
    font-size: .72rem;
    padding: .18rem .55rem;
    border-radius: 999px;
    letter-spacing: .04em;
}

.promo-player-caption[b-xrehdo5cdm] {
    max-width: 65%;
    text-align: center;
    font-size: .82rem;
    color: rgba(255, 255, 255, .7);
    background: rgba(0, 0, 0, .45);
    padding: .25rem .75rem;
    border-radius: 6px;
    line-height: 1.45;
}

/* Controls bar at bottom */
.promo-player-controls[b-xrehdo5cdm] {
    position: relative;
    flex-shrink: 0;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .85rem;
    background: linear-gradient(to top, rgba(0, 0, 0, .9) 60%, transparent);
    padding: 0 4rem;
}

.promo-ctrl-btn[b-xrehdo5cdm] {
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .18);
    color: #fff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 1rem;
    cursor: pointer;
    transition: background .15s, transform .1s;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}
.promo-ctrl-btn:hover:not(:disabled)[b-xrehdo5cdm] { background: rgba(255, 255, 255, .22); transform: scale(1.06); }
.promo-ctrl-btn:disabled[b-xrehdo5cdm]             { opacity: .3; cursor: default; }

.promo-ctrl-play[b-xrehdo5cdm] {
    width: 56px;
    height: 56px;
    font-size: 1.4rem;
    background: rgba(124, 58, 237, .75);
    border-color: rgba(124, 58, 237, .5);
}
.promo-ctrl-play:hover:not(:disabled)[b-xrehdo5cdm] { background: rgba(124, 58, 237, .95); }

.promo-ctrl-close[b-xrehdo5cdm] {
    position: absolute;
    right: 1.25rem;
    background: rgba(220, 38, 38, .35);
    border-color: rgba(220, 38, 38, .3);
}
.promo-ctrl-close:hover:not(:disabled)[b-xrehdo5cdm] { background: rgba(220, 38, 38, .7); }

/* ── Export / Render Panel ──────────────────────────────────────────────────── */
.render-panel[b-xrehdo5cdm] {
    background: rgba(245, 158, 11, .06);
    border: 1px solid rgba(245, 158, 11, .2);
    border-radius: 8px;
    padding: .85rem 1rem;
}
/* /Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-0s0qgksgzg] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-0s0qgksgzg] {
    flex: 1;
    overflow-y: auto;
}

.sidebar[b-0s0qgksgzg] {
    background: var(--ads-sidebar-bg, #0d0d10);
    position: relative;   /* anchors the absolute-positioned hamburger toggle */
}

.top-row[b-0s0qgksgzg] {
    background: var(--ads-topbar-bg, transparent);
    border-bottom: 1px solid var(--ads-border, rgba(255,255,255,0.07));
    justify-content: space-between;
    height: 2.75rem;
    display: flex;
    align-items: center;
    padding: 0 1.5rem;
}

@media (max-width: 640.98px) {
    .top-row[b-0s0qgksgzg] {
        justify-content: space-between;
    }
}

@media (min-width: 641px) {
    .page[b-0s0qgksgzg] {
        flex-direction: row;
    }

    .sidebar[b-0s0qgksgzg] {
        width: 220px;
        height: 100vh;
        position: sticky;
        top: 0;
        flex-shrink: 0;
    }

    main[b-0s0qgksgzg] {
        height: 100vh;
    }

    .top-row[b-0s0qgksgzg] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row[b-0s0qgksgzg], article[b-0s0qgksgzg] {
        padding-left: 1.75rem !important;
        padding-right: 1.5rem !important;
    }
}

#blazor-error-ui[b-0s0qgksgzg] {
    color-scheme: light only;
    background: #7f1d1d;
    color: #fecaca;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0,0,0,0.4);
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
    font-size: 0.875rem;
}

#blazor-error-ui .dismiss[b-0s0qgksgzg] {
    cursor: pointer;
    position: absolute;
    right: 0.75rem;
    top: 0.5rem;
}
/* /Components/Layout/NavMenu.razor.rz.scp.css */
/* ── Hamburger button (mobile only, hidden on md+) ────────────────────────── */
.nav-hamburger[b-i28yq8ct9f] {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 2.25rem;
    height: 2.25rem;
    padding: 4px 5px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 6px;
    cursor: pointer;
}
.nav-hamburger span[b-i28yq8ct9f] {
    display: block;
    height: 2px;
    background: rgba(255,255,255,0.75);
    border-radius: 2px;
    transition: background .15s;
}
.nav-hamburger:hover span[b-i28yq8ct9f] { background: #fff; }

/* ── Brand row ────────────────────────────────────────────────────────────── */
.top-row[b-i28yq8ct9f] {
    min-height: 3.5rem;
    background: transparent;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    padding: 0 1rem;
}
.navbar-brand[b-i28yq8ct9f] {
    font-family: 'Instrument Sans', system-ui, sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #f4f4f5 !important;
}

/* ── Section group labels ─────────────────────────────────────────────────── */
.nav-group-label[b-i28yq8ct9f] {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.62rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.28);
    padding: 1rem 1.25rem 0.3rem;
    user-select: none;
}

/* ── Admin section separator + label ─────────────────────────────────────── */
.nav-admin-separator[b-i28yq8ct9f] {
    margin: 0.75rem 1rem 0;
    border-top: 1px solid rgba(251,191,36,0.2);
}
.nav-group-label.admin[b-i28yq8ct9f] {
    color: rgba(251,191,36,0.55);
}

/* ── Nav items ────────────────────────────────────────────────────────────── */
.nav-item[b-i28yq8ct9f] {
    font-size: 0.865rem;
    padding-bottom: 0.05rem;
}
.nav-item:first-of-type[b-i28yq8ct9f] { padding-top: 0.35rem; }
.nav-item:last-of-type[b-i28yq8ct9f]  { padding-bottom: 0.75rem; }

.nav-item[b-i28yq8ct9f]  .nav-link {
    font-family: 'Instrument Sans', system-ui, sans-serif;
    color: rgba(255,255,255,0.5);
    background: none;
    border: none;
    border-left: 2px solid transparent;
    border-radius: 0 6px 6px 0;
    height: 2.25rem;
    display: flex;
    align-items: center;
    width: calc(100% - 0.5rem);
    padding: 0 0.75rem;
    transition: color 0.12s, background 0.12s, border-color 0.12s;
}
.nav-item[b-i28yq8ct9f]  a.active {
    border-left-color: #22c55e;
    background: rgba(34,197,94,0.09);
    color: #f4f4f5;
}
.nav-item[b-i28yq8ct9f]  .nav-link:hover {
    background: rgba(255,255,255,0.05);
    color: rgba(255,255,255,0.82);
    border-left-color: rgba(255,255,255,0.12);
}

/* ── Icons ────────────────────────────────────────────────────────────────── */
.bi[b-i28yq8ct9f] {
    display: inline-block;
    position: relative;
    width: 1rem;
    height: 1rem;
    margin-right: 0.6rem;
    top: -1px;
    background-size: cover;
    opacity: 0.6;
    flex-shrink: 0;
}
.nav-item[b-i28yq8ct9f]  a.active .bi,
.nav-item[b-i28yq8ct9f]  .nav-link:hover .bi { opacity: 1; }

.bi-house-door-fill-nav-menu[b-i28yq8ct9f]    { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 14.5v-3.505c0-.245.25-.495.5-.495h2c.25 0 .5.25.5.5v3.5a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5v-7a.5.5 0 0 0-.146-.354L13 5.793V2.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5v1.293L8.354 1.146a.5.5 0 0 0-.708 0l-6 6A.5.5 0 0 0 1.5 7.5v7a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5Z'/%3E%3C/svg%3E"); }
.bi-plus-square-fill-nav-menu[b-i28yq8ct9f]   { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2zm6.5 4.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3a.5.5 0 0 1 1 0z'/%3E%3C/svg%3E"); }
.bi-list-nested-nav-menu[b-i28yq8ct9f]        { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4.5 11.5A.5.5 0 0 1 5 11h10a.5.5 0 0 1 0 1H5a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 3 7h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 1 3h10a.5.5 0 0 1 0 1H1a.5.5 0 0 1-.5-.5z'/%3E%3C/svg%3E"); }
.bi-lock-nav-menu[b-i28yq8ct9f]               { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M8 1a2 2 0 0 1 2 2v4H6V3a2 2 0 0 1 2-2zm3 6V3a3 3 0 0 0-6 0v4a2 2 0 0 0-2 2v5a2 2 0 0 0 2 2h6a2 2 0 0 0 2-2V9a2 2 0 0 0-2-2z'/%3E%3C/svg%3E"); }
.bi-person-nav-menu[b-i28yq8ct9f]             { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M8 8a3 3 0 1 0 0-6 3 3 0 0 0 0 6Zm2-3a2 2 0 1 1-4 0 2 2 0 0 1 4 0Zm4 8c0 1-1 1-1 1H3s-1 0-1-1 1-4 6-4 6 3 6 4Zm-1-.004c-.001-.246-.154-.986-.832-1.664C11.516 10.68 10.289 10 8 10c-2.29 0-3.516.68-4.168 1.332-.678.678-.83 1.418-.832 1.664h10Z'/%3E%3C/svg%3E"); }
.bi-person-badge-nav-menu[b-i28yq8ct9f]       { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 2a.5.5 0 0 0 0 1h3a.5.5 0 0 0 0-1h-3zM11 8a3 3 0 1 1-6 0 3 3 0 0 1 6 0z'/%3E%3Cpath d='M4.5 0A2.5 2.5 0 0 0 2 2.5V14a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V2.5A2.5 2.5 0 0 0 11.5 0h-7z'/%3E%3C/svg%3E"); }
.bi-person-fill-nav-menu[b-i28yq8ct9f]        { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M3 14s-1 0-1-1 1-4 6-4 6 3 6 4-1 1-1 1H3Zm5-6a3 3 0 1 0 0-6 3 3 0 0 0 0 6Z'/%3E%3C/svg%3E"); }
.bi-gear-fill-nav-menu[b-i28yq8ct9f]          { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M9.405 1.05c-.413-1.4-2.397-1.4-2.81 0l-.1.34a1.464 1.464 0 0 1-2.105.872l-.31-.17c-1.283-.698-2.686.705-1.987 1.987l.169.311c.446.82.023 1.841-.872 2.105l-.34.1c-1.4.413-1.4 2.397 0 2.81l.34.1a1.464 1.464 0 0 1 .872 2.105l-.17.31c-.698 1.283.705 2.686 1.987 1.987l.311-.169a1.464 1.464 0 0 1 2.105.872l.1.34c.413 1.4 2.397 1.4 2.81 0l.1-.34a1.464 1.464 0 0 1 2.105-.872l.31.17c1.283.698 2.686-.705 1.987-1.987l-.169-.311a1.464 1.464 0 0 1 .872-2.105l.34-.1c1.4-.413 1.4-2.397 0-2.81l-.34-.1a1.464 1.464 0 0 1-.872-2.105l.17-.31c.698-1.283-.705-2.686-1.987-1.987l-.311.169a1.464 1.464 0 0 1-2.105-.872l-.1-.34zM8 10.93a2.929 2.929 0 1 1 0-5.86 2.929 2.929 0 0 1 0 5.858z'/%3E%3C/svg%3E"); }
.bi-currency-dollar-nav-menu[b-i28yq8ct9f]    { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M4 10.781c.148 1.667 1.513 2.85 3.591 3.003V15h1.043v-1.216c2.27-.179 3.678-1.438 3.678-3.3 0-1.59-.947-2.51-2.956-3.028l-.722-.187V3.467c1.122.11 1.879.714 2.07 1.616h1.47c-.166-1.6-1.54-2.748-3.54-2.875V1H7.591v1.233c-1.939.23-3.27 1.472-3.27 3.156 0 1.454.966 2.483 2.661 2.917l.61.162v4.031c-1.149-.17-1.94-.8-2.131-1.718H4z'/%3E%3C/svg%3E"); }
.bi-arrow-bar-left-nav-menu[b-i28yq8ct9f]     { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M12.5 15a.5.5 0 0 1-.5-.5v-13a.5.5 0 0 1 1 0v13a.5.5 0 0 1-.5.5ZM10 8a.5.5 0 0 1-.5.5H3.707l2.147 2.146a.5.5 0 0 1-.708.708l-3-3a.5.5 0 0 1 0-.708l3-3a.5.5 0 1 1 .708.708L3.707 7.5H9.5a.5.5 0 0 1 .5.5Z'/%3E%3C/svg%3E"); }
.bi-bar-chart-fill-nav-menu[b-i28yq8ct9f]     { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M1 11a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1v3a1 1 0 0 1-1 1H2a1 1 0 0 1-1-1v-3zm5-4a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1v7a1 1 0 0 1-1 1H7a1 1 0 0 1-1-1V7zm5-5a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1v12a1 1 0 0 1-1 1h-2a1 1 0 0 1-1-1V2z'/%3E%3C/svg%3E"); }
.bi-bell-fill-nav-menu[b-i28yq8ct9f]          { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M8 16a2 2 0 0 0 2-2H6a2 2 0 0 0 2 2zm.995-14.901a1 1 0 1 0-1.99 0A5.002 5.002 0 0 0 3 6c0 1.098-.5 6-2 7h14c-1.5-1-2-5.902-2-7 0-2.42-1.72-4.44-4.005-4.901z'/%3E%3C/svg%3E"); }
.bi-ticket-perforated-fill-nav-menu[b-i28yq8ct9f] { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M0 4.5A1.5 1.5 0 0 1 1.5 3h13A1.5 1.5 0 0 1 16 4.5V6a.5.5 0 0 1-.5.5 1.5 1.5 0 0 0 0 3 .5.5 0 0 1 .5.5v1.5a1.5 1.5 0 0 1-1.5 1.5h-13A1.5 1.5 0 0 1 0 11.5V10a.5.5 0 0 1 .5-.5 1.5 1.5 0 1 0 0-3A.5.5 0 0 1 0 6V4.5Zm4-1v1h1v-1H4Zm1 3v-1H4v1h1Zm7 0v-1h-1v1h1Zm-1 2v1h1v-1h-1Zm-6 3H4v1h1v-1Zm7 1v-1h-1v1h1ZM4 8v1h1V8H4Zm6 0h-1v1h1V8Z'/%3E%3C/svg%3E"); }
.bi-chat-dots-fill-nav-menu[b-i28yq8ct9f]     { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M16 8c0 3.866-3.582 7-8 7a9.06 9.06 0 0 1-2.347-.306c-.584.296-1.925.864-4.181 1.234-.2.032-.352-.176-.273-.362.354-.836.674-1.95.77-2.966C.744 11.37 0 9.76 0 8c0-3.866 3.582-7 8-7s8 3.134 8 7zM5 8a1 1 0 1 0-2 0 1 1 0 0 0 2 0zm4 0a1 1 0 1 0-2 0 1 1 0 0 0 2 0zm3 1a1 1 0 1 0 0-2 1 1 0 0 0 0 2z'/%3E%3C/svg%3E"); }
.bi-hand-thumbs-up-fill-nav-menu[b-i28yq8ct9f] { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M6.956 1.745C7.021.81 7.908.087 8.864.325l.261.066c.463.116.874.456 1.012.965.22.816.533 2.511.062 4.51a18.09 18.09 0 0 1 .443-.051c.713-.065 1.669-.072 2.516.21.518.173.994.681 1.2 1.273.184.532.16 1.032-.01 1.49.07.187.124.383.135.582.077 1.38-.343 2.498-1.088 3.255-.728.74-1.697 1.056-2.572 1.056H7.256c-.935 0-1.358-.148-1.907-.59l-.064-.05a5.555 5.555 0 0 1-1.76-2.619l-.042-.135a.507.507 0 0 0-.144-.24L2.5 8.01c-.384-.337-.874-.43-1.298-.172-.371.228-.508.686-.39 1.102l.354.604.51.576a.5.5 0 0 1-.754.656l-.51-.576a2.494 2.494 0 0 1-.61-1.03c-.22-.784.04-1.68.691-2.1.76-.468 1.636-.32 2.245.143L4 7.587z'/%3E%3C/svg%3E"); }
.bi-shield-fill-nav-menu[b-i28yq8ct9f]        { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M5.338 1.59a61.44 61.44 0 0 0-2.837.856.481.481 0 0 0-.328.39c-.554 4.157.726 7.19 2.253 9.188a10.725 10.725 0 0 0 2.287 2.233c.346.244.652.42.893.533a.55.55 0 0 0 .2.043.615.615 0 0 0 .2-.043c.24-.113.547-.29.893-.533a10.726 10.726 0 0 0 2.287-2.233c1.527-1.997 2.807-5.031 2.253-9.188a.48.48 0 0 0-.328-.39 60.439 60.439 0 0 0-2.837-.855C9.552 1.29 8.531 1.067 8 1.067c-.53 0-1.552.223-2.662.524z'/%3E%3C/svg%3E"); }
.bi-shield-lock-fill-nav-menu[b-i28yq8ct9f]   { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M8 0c-.69 0-1.843.265-2.928.56-1.11.3-2.229.655-2.887.87a1.54 1.54 0 0 0-1.044 1.262c-.596 4.477.787 7.795 2.465 9.99a11.777 11.777 0 0 0 2.517 2.453c.386.273.744.482 1.048.625.28.132.481.2.829.2s.548-.068.829-.2a7.159 7.159 0 0 0 1.048-.625 11.775 11.775 0 0 0 2.517-2.453c1.678-2.195 3.061-5.513 2.465-9.99a1.541 1.541 0 0 0-1.044-1.263 62.467 62.467 0 0 0-2.887-.87C9.843.266 8.69 0 8 0zm0 5a1.5 1.5 0 0 1 .5 2.915l.385 1.99a.5.5 0 0 1-.491.595h-.788a.5.5 0 0 1-.49-.595l.384-1.99A1.5 1.5 0 0 1 8 5z'/%3E%3C/svg%3E"); }
.bi-people-fill-nav-menu[b-i28yq8ct9f]        { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M7 14s-1 0-1-1 1-4 5-4 5 3 5 4-1 1-1 1H7Zm4-6a3 3 0 1 0 0-6 3 3 0 0 0 0 6Zm-5.784 6A2.238 2.238 0 0 1 5 13c0-1.355.68-2.75 1.936-3.72A6.325 6.325 0 0 0 5 9c-4 0-5 3-5 4s1 1 1 1h4.216ZM4.5 8a2.5 2.5 0 1 0 0-5 2.5 2.5 0 0 0 0 5Z'/%3E%3C/svg%3E"); }
.bi-credit-card-fill-nav-menu[b-i28yq8ct9f]   { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M0 4a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v1H0V4zm0 3h16v5a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V7zm3 2a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5H3z'/%3E%3C/svg%3E"); }
.bi-pencil-square-nav-menu[b-i28yq8ct9f]      { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M15.502 1.94a.5.5 0 0 1 0 .706L14.459 3.69l-2-2L13.502.646a.5.5 0 0 1 .707 0l1.293 1.293zm-1.75 2.456-2-2L4.939 9.21a.5.5 0 0 0-.121.196l-.805 2.414a.25.25 0 0 0 .316.316l2.414-.805a.5.5 0 0 0 .196-.12l6.813-6.814z'/%3E%3Cpath fill-rule='evenodd' d='M1 13.5A1.5 1.5 0 0 0 2.5 15h11a1.5 1.5 0 0 0 1.5-1.5v-6a.5.5 0 0 0-1 0v6a.5.5 0 0 1-.5.5h-11a.5.5 0 0 1-.5-.5v-11a.5.5 0 0 1 .5-.5H9a.5.5 0 0 0 0-1H2.5A1.5 1.5 0 0 0 1 2.5v11z'/%3E%3C/svg%3E"); }
.bi-hdd-network-fill-nav-menu[b-i28yq8ct9f]   { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M4.5 5a.5.5 0 1 0 0-1 .5.5 0 0 0 0 1zM3 4.5a.5.5 0 1 1-1 0 .5.5 0 0 1 1 0z'/%3E%3Cpath d='M0 4a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v1a2 2 0 0 1-2 2H8.5v3a1.5 1.5 0 0 1 1.5 1.5h5.5a.5.5 0 0 1 0 1H10A1.5 1.5 0 0 1 8.5 14h-1A1.5 1.5 0 0 1 6 12.5H.5a.5.5 0 0 1 0-1H6A1.5 1.5 0 0 1 7.5 10V7H2a2 2 0 0 1-2-2V4z'/%3E%3C/svg%3E"); }
.bi-credit-card-2-front-fill-nav-menu[b-i28yq8ct9f] { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M0 4a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V4zm2.5 1a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h2a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5h-2zm0 3a.5.5 0 0 0 0 1h5a.5.5 0 0 0 0-1h-5zm0 2a.5.5 0 0 0 0 1h1a.5.5 0 0 0 0-1h-1zm3 0a.5.5 0 0 0 0 1h1a.5.5 0 0 0 0-1h-1zm3 0a.5.5 0 0 0 0 1h1a.5.5 0 0 0 0-1h-1z'/%3E%3C/svg%3E"); }
.bi-person-lines-fill-nav-menu[b-i28yq8ct9f]  { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M6 8a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm-5 6s-1 0-1-1 1-4 6-4 6 3 6 4-1 1-1 1H1zM11 3.5a.5.5 0 0 1 .5-.5h4a.5.5 0 0 1 0 1h-4a.5.5 0 0 1-.5-.5zm.5 2.5a.5.5 0 0 0 0 1h4a.5.5 0 0 0 0-1h-4zm2 3a.5.5 0 0 0 0 1h2a.5.5 0 0 0 0-1h-2zm0 3a.5.5 0 0 0 0 1h2a.5.5 0 0 0 0-1h-2z'/%3E%3C/svg%3E"); }
.bi-question-circle-fill-nav-menu[b-i28yq8ct9f] { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zM5.496 6.033h.825c.138 0 .248-.113.266-.25.09-.656.54-1.134 1.342-1.134.686 0 1.314.343 1.314 1.168 0 .635-.374.927-.965 1.371-.673.489-1.206 1.06-1.168 1.987l.003.217a.25.25 0 0 0 .25.246h.811a.25.25 0 0 0 .25-.25v-.105c0-.718.273-.927 1.01-1.486.609-.463 1.244-.977 1.244-2.056 0-1.511-1.276-2.241-2.673-2.241-1.267 0-2.655.59-2.75 2.286a.237.237 0 0 0 .241.247zm2.325 6.443c.61 0 1.029-.394 1.029-.927 0-.552-.42-.94-1.029-.94-.584 0-1.009.388-1.009.94 0 .533.425.927 1.01.927z'/%3E%3C/svg%3E"); }
.bi-question-circle-nav-menu[b-i28yq8ct9f]      { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M8 15A7 7 0 1 1 8 1a7 7 0 0 1 0 14zm0 1A8 8 0 1 0 8 0a8 8 0 0 0 0 16z'/%3E%3Cpath d='M5.255 5.786a.237.237 0 0 0 .241.247h.825c.138 0 .248-.113.266-.25.09-.656.54-1.134 1.342-1.134.686 0 1.314.343 1.314 1.168 0 .635-.374.927-.965 1.371-.673.489-1.206 1.06-1.168 1.987l.003.217a.25.25 0 0 0 .25.246h.811a.25.25 0 0 0 .25-.25v-.105c0-.718.273-.927 1.01-1.486.609-.463 1.244-.977 1.244-2.056 0-1.511-1.276-2.241-2.673-2.241-1.267 0-2.655.59-2.75 2.286zm1.557 5.763c0 .533.425.927 1.01.927.609 0 1.028-.394 1.028-.927 0-.552-.42-.94-1.029-.94-.584 0-1.009.388-1.009.94z'/%3E%3C/svg%3E"); }
.bi-lightbulb-fill-nav-menu[b-i28yq8ct9f]       { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M2 6a6 6 0 1 1 10.174 4.31c-.203.196-.359.4-.453.619l-.762 1.769A.5.5 0 0 1 10.5 13a.5.5 0 0 1 0 1 .5.5 0 0 1 0 1l-.224.447a1 1 0 0 1-.894.553H6.618a1 1 0 0 1-.894-.553L5.5 15a.5.5 0 0 1 0-1 .5.5 0 0 1 0-1 .5.5 0 0 1-.46-.302l-.761-1.77a1.964 1.964 0 0 0-.453-.618A5.984 5.984 0 0 1 2 6z'/%3E%3C/svg%3E"); }
.bi-people-nav-menu[b-i28yq8ct9f]              { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M15 14s1 0 1-1-1-4-5-4-5 3-5 4 1 1 1 1h8Zm-7.978-1A.261.261 0 0 1 7 12.996c.001-.264.167-1.03.76-1.72C8.312 10.629 9.282 10 11 10c1.717 0 2.687.63 3.24 1.276.593.69.758 1.457.76 1.72l-.008.002-.014.002H7.022ZM11 7a2 2 0 1 0 0-4 2 2 0 0 0 0 4Zm3-2a3 3 0 1 1-6 0 3 3 0 0 1 6 0ZM6.936 9.28a5.88 5.88 0 0 0-1.23-.247A7.35 7.35 0 0 0 5 9c-4 0-5 3-5 4 0 .667.333 1 1 1h4.216A2.238 2.238 0 0 1 5 13c0-1.01.377-2.042 1.09-2.904.243-.294.526-.569.846-.816ZM4.92 10A5.493 5.493 0 0 0 4 13H1c0-.26.164-1.03.76-1.724.545-.636 1.492-1.256 3.16-1.275ZM1.5 5.5a2.5 2.5 0 1 1 5 0 2.5 2.5 0 0 1-5 0Zm2.5-1.5a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3Z'/%3E%3C/svg%3E"); }
.bi-stars-nav-menu[b-i28yq8ct9f]               { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M7.657 6.247c.11-.33.576-.33.686 0l.645 1.937a2.89 2.89 0 0 0 1.829 1.828l1.936.645c.33.11.33.576 0 .686l-1.937.645a2.89 2.89 0 0 0-1.828 1.829l-.645 1.936a.361.361 0 0 1-.686 0l-.645-1.937a2.89 2.89 0 0 0-1.828-1.828l-1.937-.645a.361.361 0 0 1 0-.686l1.937-.645a2.89 2.89 0 0 0 1.828-1.828l.645-1.937zM3.794 1.148a.217.217 0 0 1 .412 0l.387 1.162c.173.518.579.924 1.097 1.097l1.162.387a.217.217 0 0 1 0 .412l-1.162.387A1.734 1.734 0 0 0 4.593 5.69l-.387 1.162a.217.217 0 0 1-.412 0L3.407 5.69A1.734 1.734 0 0 0 2.31 4.593l-1.162-.387a.217.217 0 0 1 0-.412l1.162-.387A1.734 1.734 0 0 0 3.407 2.31l.387-1.162zM10.863.099a.145.145 0 0 1 .274 0l.258.774c.115.346.386.617.732.732l.774.258a.145.145 0 0 1 0 .274l-.774.258a1.156 1.156 0 0 0-.732.732l-.258.774a.145.145 0 0 1-.274 0l-.258-.774a1.156 1.156 0 0 0-.732-.732L9.1 2.137a.145.145 0 0 1 0-.274l.774-.258c.346-.115.617-.386.732-.732L10.863.1z'/%3E%3C/svg%3E"); }
.bi-cloud-upload-fill-nav-menu[b-i28yq8ct9f]   { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M8 0a5.53 5.53 0 0 0-3.594 1.342c-.766.66-1.321 1.52-1.464 2.383C1.266 4.095 0 5.555 0 7.318 0 9.366 1.708 11 3.781 11H7.5V5.707L5.354 7.854a.5.5 0 1 1-.708-.708l3-3a.5.5 0 0 1 .708 0l3 3a.5.5 0 0 1-.708.708L8.5 5.707V11h4.188C14.502 11 16 9.57 16 7.773c0-1.636-1.242-2.969-2.834-3.194C12.923 1.999 10.69 0 8 0zm-.5 14.5V11h1v3.5a.5.5 0 0 1-1 0z'/%3E%3C/svg%3E"); }
.bi-arrow-up-circle-fill-nav-menu[b-i28yq8ct9f] { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M16 8A8 8 0 1 0 0 8a8 8 0 0 0 16 0zm-7.5 3.5a.5.5 0 0 1-1 0V5.707L5.354 7.854a.5.5 0 1 1-.708-.708l3-3a.5.5 0 0 1 .708 0l3 3a.5.5 0 0 1-.708.708L8.5 5.707V11.5z'/%3E%3C/svg%3E"); }
.bi-code-slash-nav-menu[b-i28yq8ct9f]          { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M10.478 1.647a.5.5 0 1 0-.956-.294l-4 13a.5.5 0 0 0 .956.294l4-13zM4.854 4.146a.5.5 0 0 1 0 .708L1.707 8l3.147 3.146a.5.5 0 0 1-.708.708l-3.5-3.5a.5.5 0 0 1 0-.708l3.5-3.5a.5.5 0 0 1 .708 0zm6.292 0a.5.5 0 0 0 0 .708L14.293 8l-3.147 3.146a.5.5 0 0 0 .708.708l3.5-3.5a.5.5 0 0 0 0-.708l-3.5-3.5a.5.5 0 0 0-.708 0z'/%3E%3C/svg%3E"); }
.bi-megaphone-fill-nav-menu[b-i28yq8ct9f]      { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M13 2.5a1 1 0 0 1 2 0v11a1 1 0 0 1-2 0v-.085c-2.517.26-4.77 1.177-6.987 2.077C4.22 16.365 2.59 17 1 17v-5c1.59 0 3.22-.635 5.013-1.492.906-.429 1.833-.883 2.796-1.288.264-.11.532-.213.8-.312V3.091c-.268-.1-.536-.202-.8-.312-.963-.405-1.89-.86-2.796-1.288C4.22 0.635 2.59 0 1 0v5c.42 0 .836.04 1.247.115a.5.5 0 0 1-.494.869A6.526 6.526 0 0 0 1 5.5V2a.5.5 0 0 1 0-1h.5C2.59.999 4.22 1.635 6.013 2.491c.906.43 1.833.884 2.796 1.289.264.11.532.212.8.312V2.5z'/%3E%3C/svg%3E"); }

/* ── Scrollable area ──────────────────────────────────────────────────────── */
.nav-scrollable[b-i28yq8ct9f] { display: none; }
.nav-scrollable.nav-open[b-i28yq8ct9f] { display: block; }

@media (min-width: 641px) {
    .nav-hamburger[b-i28yq8ct9f] { display: none; }
    .nav-scrollable[b-i28yq8ct9f] {
        display: block;
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
        scrollbar-width: thin;
        scrollbar-color: rgba(255,255,255,0.25) transparent;
    }
}
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-xc0hz1pa5o],
.components-reconnect-repeated-attempt-visible[b-xc0hz1pa5o],
.components-reconnect-failed-visible[b-xc0hz1pa5o],
.components-pause-visible[b-xc0hz1pa5o],
.components-resume-failed-visible[b-xc0hz1pa5o],
.components-rejoining-animation[b-xc0hz1pa5o] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-xc0hz1pa5o],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-xc0hz1pa5o],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-xc0hz1pa5o],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-xc0hz1pa5o],
#components-reconnect-modal.components-reconnect-retrying[b-xc0hz1pa5o],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-xc0hz1pa5o],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-xc0hz1pa5o],
#components-reconnect-modal.components-reconnect-failed[b-xc0hz1pa5o],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-xc0hz1pa5o] {
    display: block;
}


#components-reconnect-modal[b-xc0hz1pa5o] {
    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-xc0hz1pa5o 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-xc0hz1pa5o 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-xc0hz1pa5o 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-xc0hz1pa5o]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-xc0hz1pa5o 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-xc0hz1pa5o {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-xc0hz1pa5o {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-xc0hz1pa5o {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-xc0hz1pa5o] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-xc0hz1pa5o] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-xc0hz1pa5o] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-xc0hz1pa5o] {
        background-color: #3b6ea2;
    }

    #components-reconnect-modal button:active[b-xc0hz1pa5o] {
        background-color: #6b9ed2;
    }

.components-rejoining-animation[b-xc0hz1pa5o] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-xc0hz1pa5o] {
        position: absolute;
        border: 3px solid #0087ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-xc0hz1pa5o 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-xc0hz1pa5o] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-xc0hz1pa5o {
    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/Pages/SettingsPage.razor.rz.scp.css */
/* ── Theme swatch picker ─────────────────────────────────────────────────── */

.theme-swatch[b-8bz7998t46] {
    display:          flex;
    align-items:      center;
    gap:              6px;
    padding:          6px 10px;
    border:           1px solid rgba(255,255,255,0.12);
    border-radius:    8px;
    background:       var(--swatch-bg, #1a1a2e);
    color:            #ccc;
    font-size:        0.78rem;
    cursor:           pointer;
    transition:       border-color .15s, box-shadow .15s, color .15s;
}

.theme-swatch:hover[b-8bz7998t46] {
    border-color: var(--swatch-primary, #6366f1);
    color:        #fff;
}

.theme-swatch.active[b-8bz7998t46] {
    border-color: var(--swatch-primary, #6366f1);
    box-shadow:   0 0 0 2px var(--swatch-primary, #6366f1);
    color:        #fff;
}

.swatch-dot[b-8bz7998t46] {
    width:         12px;
    height:        12px;
    border-radius: 50%;
    background:    var(--swatch-primary, #6366f1);
    flex-shrink:   0;
}
/* /Components/Shared/AchievementToast.razor.rz.scp.css */
/* ── Achievement toast stack ─────────────────────────────────────────────── */
.achievement-stack[b-d3rg5mlg81] {
    position: fixed;
    top: 1.25rem;
    right: 1.25rem;
    z-index: 99000;
    display: flex;
    flex-direction: column;
    gap: .6rem;
    pointer-events: none;
    max-width: 340px;
}

/* ── Base toast ──────────────────────────────────────────────────────────── */
.achievement-toast[b-d3rg5mlg81] {
    display: flex;
    align-items: center;
    gap: .75rem;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 14px;
    padding: .65rem .85rem .65rem .7rem;
    color: #fff;
    font-family: inherit;
    box-shadow: 0 8px 32px rgba(0,0,0,.55), 0 0 0 1px rgba(255,255,255,.06);
    pointer-events: all;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

/* ── Enter / leave animations ────────────────────────────────────────────── */
.toast-enter[b-d3rg5mlg81] {
    animation: toastSlideIn-b-d3rg5mlg81 .35s cubic-bezier(.175,.885,.32,1.275) both;
}
.toast-leave[b-d3rg5mlg81] {
    animation: toastSlideOut-b-d3rg5mlg81 .4s ease-in both;
}
@keyframes toastSlideIn-b-d3rg5mlg81 {
    from { opacity: 0; transform: translateX(110%); }
    to   { opacity: 1; transform: translateX(0); }
}
@keyframes toastSlideOut-b-d3rg5mlg81 {
    from { opacity: 1; transform: translateX(0) scale(1); }
    to   { opacity: 0; transform: translateX(60%) scale(.9); }
}

/* ── Icon ────────────────────────────────────────────────────────────────── */
.toast-icon-wrap[b-d3rg5mlg81] {
    position: relative;
    flex-shrink: 0;
}
.toast-icon[b-d3rg5mlg81] {
    font-size: 2rem;
    line-height: 1;
    display: block;
}
.toast-ring[b-d3rg5mlg81] {
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px solid gold;
    animation: ringPulse-b-d3rg5mlg81 1.2s ease-out infinite;
    pointer-events: none;
}
@keyframes ringPulse-b-d3rg5mlg81 {
    0%   { transform: scale(.9); opacity: .9; }
    70%  { transform: scale(1.4); opacity: 0; }
    100% { transform: scale(.9); opacity: 0; }
}

/* ── Text body ───────────────────────────────────────────────────────────── */
.toast-body[b-d3rg5mlg81] {
    flex: 1;
    min-width: 0;
}
.toast-label[b-d3rg5mlg81] {
    font-size: .65rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: #a29bfe;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: .1rem;
}
.toast-title[b-d3rg5mlg81] {
    font-size: .92rem;
    font-weight: 700;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.toast-desc[b-d3rg5mlg81] {
    font-size: .72rem;
    color: rgba(255,255,255,.65);
    line-height: 1.3;
    margin-top: .1rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.toast-xp[b-d3rg5mlg81] {
    font-size: .7rem;
    color: #ffd700;
    font-weight: 700;
    margin-top: .2rem;
}

/* ── Close button ────────────────────────────────────────────────────────── */
.toast-close[b-d3rg5mlg81] {
    background: none;
    border: none;
    color: rgba(255,255,255,.45);
    font-size: 1.1rem;
    line-height: 1;
    padding: 0 .15rem;
    cursor: pointer;
    flex-shrink: 0;
    align-self: flex-start;
    pointer-events: all;
}
.toast-close:hover[b-d3rg5mlg81] { color: #fff; }

/* ── Progress bar ────────────────────────────────────────────────────────── */
.toast-progress[b-d3rg5mlg81] {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 3px;
    width: 100%;
    background: linear-gradient(90deg, #a29bfe, #6c5ce7);
    transform-origin: left;
    animation: toastProgress-b-d3rg5mlg81 linear 1 forwards;
}
@keyframes toastProgress-b-d3rg5mlg81 {
    from { transform: scaleX(1); }
    to   { transform: scaleX(0); }
}

/* ── Rarity variants ─────────────────────────────────────────────────────── */
.anim-rare[b-d3rg5mlg81] {
    border-color: rgba(162,155,254,.4);
    box-shadow: 0 8px 32px rgba(0,0,0,.55), 0 0 16px rgba(162,155,254,.25);
}
.anim-rare .toast-label[b-d3rg5mlg81] { color: #a29bfe; }
.anim-rare .toast-progress[b-d3rg5mlg81] { background: linear-gradient(90deg, #a29bfe, #6c5ce7); }

.anim-epic[b-d3rg5mlg81] {
    background: linear-gradient(135deg, #2d1b69 0%, #11998e 100%);
    border-color: rgba(253,121,168,.5);
    box-shadow: 0 8px 32px rgba(0,0,0,.6), 0 0 24px rgba(253,121,168,.3);
}
.anim-epic .toast-label[b-d3rg5mlg81] { color: #fd79a8; }
.anim-epic .toast-progress[b-d3rg5mlg81] { background: linear-gradient(90deg, #fd79a8, #e84393); }

.anim-legendary[b-d3rg5mlg81] {
    background: linear-gradient(135deg, #4a0e0e 0%, #7b2900 50%, #4a0e0e 100%);
    border-color: rgba(255,215,0,.6);
    box-shadow: 0 8px 40px rgba(0,0,0,.7), 0 0 32px rgba(255,215,0,.4);
    animation: toastSlideIn-b-d3rg5mlg81 .35s cubic-bezier(.175,.885,.32,1.275) both,
               legendaryGlow-b-d3rg5mlg81 2s ease-in-out infinite;
}
.anim-legendary .toast-label[b-d3rg5mlg81] { color: #ffd700; }
.anim-legendary .toast-ring[b-d3rg5mlg81]  { border-color: #ffd700; }
.anim-legendary .toast-progress[b-d3rg5mlg81] { background: linear-gradient(90deg, #ffd700, #ff9f43); }
@keyframes legendaryGlow-b-d3rg5mlg81 {
    0%, 100% { box-shadow: 0 8px 40px rgba(0,0,0,.7), 0 0 32px rgba(255,215,0,.4); }
    50%       { box-shadow: 0 8px 40px rgba(0,0,0,.7), 0 0 48px rgba(255,215,0,.7); }
}
/* /Components/Shared/AppAssistant.razor.rz.scp.css */
/* ── Live2D floating avatar ─────────────────────────────────────────────── */
.live2d-float-wrap[b-wx0b72wf0n] {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 150px;
    height: 150px;
    cursor: grab;
    z-index: 1500;
    transition: transform .2s;
    filter: drop-shadow(0 8px 24px rgba(0,0,0,.35));
    /* Pass clicks through the transparent canvas area */
    pointer-events: none;
}
/* Canvas itself never blocks clicks — transparent areas pass through */
.live2d-float-wrap .live2d-canvas[b-wx0b72wf0n] {
    pointer-events: none;
}
/* Hit zone: only the bottom 55% where the model is actually visible */
.live2d-hit-zone[b-wx0b72wf0n] {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 55%;
    pointer-events: auto;
    cursor: grab;
    border-radius: 0 0 8px 8px;
}
.live2d-hit-zone:active[b-wx0b72wf0n] { cursor: grabbing; }
.live2d-float-wrap:active[b-wx0b72wf0n] { cursor: grabbing; }
.live2d-float-wrap:hover[b-wx0b72wf0n] {
    transform: scale(1.03);
}
/* Hidden while model is loading — canvas must be in DOM for init, but invisible */
.live2d-float-wrap.live2d-loading[b-wx0b72wf0n] {
    opacity: 0;
    pointer-events: none;
}
/* Nudge the panel to the left so it doesn't overlap the character */
.live2d-float-wrap.live2d-panel-open ~ .assistant-panel[b-wx0b72wf0n] {
    right: 175px;
}
.live2d-canvas[b-wx0b72wf0n] {
    width: 100%;
    height: 100%;
    display: block;
}
/* Hover tooltip — sits inside the avatar at the bottom, not above it */
.live2d-hint[b-wx0b72wf0n] {
    position: absolute;
    bottom: 6px;
    left: 50%;
    transform: translateX(-50%) translateY(4px);
    background: rgba(0,0,0,.72);
    color: #fff;
    font-size: .7rem;
    padding: .2rem .5rem;
    border-radius: 6px;
    white-space: nowrap;
    pointer-events: none;
    opacity: 0;
    transition: opacity .18s, transform .18s;
}
.live2d-float-wrap:hover .live2d-hint[b-wx0b72wf0n] {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* ── Floating Action Button ─────────────────────────────────────────────── */
.assistant-fab[b-wx0b72wf0n] {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: none;
    background: #0d6efd;
    box-shadow: 0 4px 16px rgba(13,110,253,.5);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1500;
    transition: transform .15s, box-shadow .15s;
}
.assistant-fab:hover[b-wx0b72wf0n] {
    transform: scale(1.08);
    box-shadow: 0 6px 24px rgba(13,110,253,.65);
}
.assistant-fab:active[b-wx0b72wf0n] { transform: scale(.95); }

/* ── Chat Panel ─────────────────────────────────────────────────────────── */
.assistant-panel[b-wx0b72wf0n] {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 340px;
    min-width: 260px;
    max-width: 700px;
    max-height: 85vh;
    min-height: 220px;
    border-radius: 14px;
    background: var(--bs-body-bg, #fff);
    border: 1px solid var(--bs-border-color, #dee2e6);
    box-shadow: 0 8px 32px rgba(0,0,0,.22);
    display: flex;
    flex-direction: column;
    z-index: 1500;
    overflow: hidden;
}

/* Resize handle — bottom-right corner */
.assistant-resize-handle[b-wx0b72wf0n] {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 18px;
    height: 18px;
    cursor: nwse-resize;
    z-index: 10;
    border-radius: 0 0 14px 0;
    background: transparent;
    flex-shrink: 0;
}
/* Diagonal grip lines (bottom-right resize indicator) */
.assistant-resize-handle[b-wx0b72wf0n]::before,
.assistant-resize-handle[b-wx0b72wf0n]::after {
    content: '';
    position: absolute;
    background: var(--bs-border-color, #dee2e6);
    border-radius: 1px;
}
/* Two diagonal lines like a standard resize grip */
.assistant-resize-handle[b-wx0b72wf0n]::before {
    width: 2px;
    height: 10px;
    bottom: 3px;
    right: 7px;
    transform: rotate(45deg);
    transform-origin: bottom right;
}
.assistant-resize-handle[b-wx0b72wf0n]::after {
    width: 2px;
    height: 6px;
    bottom: 3px;
    right: 3px;
    transform: rotate(45deg);
    transform-origin: bottom right;
}
.assistant-resize-handle:hover[b-wx0b72wf0n]::before,
.assistant-resize-handle:hover[b-wx0b72wf0n]::after {
    background: #0d6efd;
}

/* Header — acts as drag handle */
.assistant-header[b-wx0b72wf0n] {
    display: flex;
    align-items: center;
    gap: .4rem;
    padding: .55rem .75rem;
    background: #0d6efd;
    cursor: grab;
    color: #fff;
}
.assistant-icon-btn[b-wx0b72wf0n] {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: .1rem .35rem;
    border-radius: 6px;
    font-size: .95rem;
    color: inherit;
    line-height: 1;
    transition: background .1s;
}
.assistant-icon-btn:hover[b-wx0b72wf0n]   { background: rgba(255,255,255,.15); }
.assistant-icon-btn:disabled[b-wx0b72wf0n] { opacity: .35; cursor: default; }
.assistant-icon-btn.active[b-wx0b72wf0n]  { background: rgba(255,255,255,.3); }
.send-btn[b-wx0b72wf0n] { color: #0d6efd; }

/* Mic wrapper — stacks icon + local/cloud label */
.mic-wrap[b-wx0b72wf0n] {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}
.mic-label[b-wx0b72wf0n] {
    font-size: .58rem;
    line-height: 1;
    opacity: .65;
    letter-spacing: .02em;
    pointer-events: none;
    margin-top: -2px;
}
.mic-live[b-wx0b72wf0n] {
    color: #f66;
    font-weight: 600;
    font-size: .58rem;
    animation: micPulse-b-wx0b72wf0n 1s ease-in-out infinite;
}
@keyframes micPulse-b-wx0b72wf0n {
    0%, 100% { opacity: 1; }
    50%       { opacity: .35; }
}
.assistant-icon-btn.mic-listening[b-wx0b72wf0n] {
    color: #f66;
    background: rgba(255, 80, 80, .15);
}
.mic-error[b-wx0b72wf0n] {
    font-size: .72rem;
    color: #f66;
    cursor: pointer;
    white-space: normal;
    line-height: 1.3;
    max-width: 160px;
}
.assistant-header .send-btn[b-wx0b72wf0n] { color: #fff; }

/* Messages area */
.assistant-messages[b-wx0b72wf0n] {
    flex: 1;
    overflow-y: auto;
    padding: .75rem .6rem;
    display: flex;
    flex-direction: column;
    gap: .45rem;
}
.assistant-empty[b-wx0b72wf0n] {
    text-align: center;
    color: var(--bs-secondary-color, #6c757d);
    padding: 1.5rem .5rem;
    font-size: .9rem;
}

/* Bubbles */
.assistant-msg[b-wx0b72wf0n] { display: flex; }
.assistant-msg.user[b-wx0b72wf0n]  { justify-content: flex-end; }
.assistant-msg.bot[b-wx0b72wf0n]   { justify-content: flex-start; }
.assistant-bubble[b-wx0b72wf0n] {
    max-width: 80%;
    padding: .45rem .7rem;
    border-radius: 12px;
    font-size: .85rem;
    line-height: 1.45;
    word-break: break-word;
}
.assistant-msg.user .assistant-bubble[b-wx0b72wf0n] {
    background: #0d6efd;
    color: #fff;
    border-bottom-right-radius: 3px;
}
.assistant-msg.bot .assistant-bubble[b-wx0b72wf0n] {
    background: var(--bs-tertiary-bg, #f8f9fa);
    color: var(--bs-body-color, #212529);
    border: 1px solid var(--bs-border-color, #dee2e6);
    border-bottom-left-radius: 3px;
}

/* Thinking dots */
.assistant-bubble.thinking[b-wx0b72wf0n] {
    display: flex;
    gap: .3rem;
    align-items: center;
    padding: .55rem .9rem;
}
.dot[b-wx0b72wf0n] {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--bs-secondary-color, #888);
    animation: dotBounce-b-wx0b72wf0n 1.2s infinite ease-in-out;
}
.dot:nth-child(2)[b-wx0b72wf0n] { animation-delay: .2s; }
.dot:nth-child(3)[b-wx0b72wf0n] { animation-delay: .4s; }
@keyframes dotBounce-b-wx0b72wf0n {
    0%, 80%, 100% { transform: translateY(0); }
    40%           { transform: translateY(-6px); }
}

/* Input row */
.assistant-input-row[b-wx0b72wf0n] {
    display: flex;
    align-items: center;
    gap: .25rem;
    padding: .5rem .6rem;
    border-top: 1px solid var(--bs-border-color, #dee2e6);
}
.assistant-input-row .form-control[b-wx0b72wf0n] { flex: 1; font-size: .85rem; }

/* ── Clippy character (CSS art) ─────────────────────────────────────────── */
.clippy-fab[b-wx0b72wf0n] {
    background: #ffe066;
    box-shadow: 0 4px 16px rgba(255,200,0,.5);
    width: 64px;
    height: 64px;
}
.clippy-fab:hover[b-wx0b72wf0n] { box-shadow: 0 6px 24px rgba(255,200,0,.7); }

.clippy-panel[b-wx0b72wf0n] { border-top: 4px solid #ffe066; }
.clippy-panel .assistant-header[b-wx0b72wf0n] { background: #ffe066; color: #333; }
.clippy-panel .send-btn[b-wx0b72wf0n] { color: #333; }

/* Full clippy character on FAB — sized to fill the larger button */
.clippy-idle[b-wx0b72wf0n] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    animation: clippyBob-b-wx0b72wf0n 2.5s ease-in-out infinite;
}
.clippy-body[b-wx0b72wf0n] {
    width: 38px;
    height: 30px;
    background: #fff;
    border: 2.5px solid #333;
    border-radius: 8px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}
.clippy-body.sm[b-wx0b72wf0n] {
    width: 20px;
    height: 16px;
    border-radius: 4px;
    gap: 3px;
}
.clippy-eye[b-wx0b72wf0n] {
    width: 7px;
    height: 7px;
    background: #333;
    border-radius: 50%;
    animation: clippyBlink-b-wx0b72wf0n 3.5s infinite;
    margin-bottom: 4px;
}
.clippy-body.sm .clippy-eye[b-wx0b72wf0n] { width: 4px; height: 4px; margin-bottom: 2px; }
.clippy-mouth[b-wx0b72wf0n] {
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 16px;
    height: 6px;
    border: 2.5px solid #333;
    border-top: none;
    border-radius: 0 0 8px 8px;
}
.clippy-legs[b-wx0b72wf0n] {
    display: flex;
    gap: 7px;
}
.clippy-leg[b-wx0b72wf0n] {
    width: 8px;
    height: 9px;
    background: #333;
    border-radius: 0 0 4px 4px;
}

/* Mini clippy in header */
.clippy-mini[b-wx0b72wf0n] {
    display: flex;
    align-items: center;
}

@keyframes clippyBob-b-wx0b72wf0n {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-3px); }
}
@keyframes clippyBlink-b-wx0b72wf0n {
    0%, 90%, 100% { transform: scaleY(1); }
    95%           { transform: scaleY(0.1); }
}

/* ── Phase 31: Onboarding Wizard ─────────────────────────────────────────── */
.wizard-panel[b-wx0b72wf0n] {
    border-bottom: 1px solid rgba(0,0,0,.08);
    background: linear-gradient(135deg, #f0f4ff 0%, #fafbff 100%);
    padding: .75rem;
}
.wizard-step-header[b-wx0b72wf0n] {
    display: flex;
    align-items: center;
    margin-bottom: .4rem;
}
.wizard-step-num[b-wx0b72wf0n] {
    font-size: .7rem;
    color: #6c757d;
    background: rgba(13,110,253,.08);
    border-radius: 20px;
    padding: .1rem .5rem;
}
.wizard-step-title[b-wx0b72wf0n] {
    font-weight: 600;
    font-size: .85rem;
    margin-bottom: .35rem;
    color: #1a1a2e;
}
.wizard-step-body[b-wx0b72wf0n] {
    font-size: .8rem;
    color: #444;
    line-height: 1.5;
    margin-bottom: .6rem;
}
.wizard-step-body ul[b-wx0b72wf0n] {
    padding-left: 1.2rem;
    margin-bottom: .3rem;
}
.wizard-step-buttons[b-wx0b72wf0n] {
    display: flex;
    flex-direction: column;
    gap: .3rem;
}
.wizard-choice-btn[b-wx0b72wf0n] {
    text-align: left;
    font-size: .78rem;
    padding: .25rem .5rem;
}

/* ── Personality Badge + Picker ──────────────────────────────────────────── */
.assistant-personality-badge[b-wx0b72wf0n] {
    background: rgba(255,255,255,.18);
    border: 1px solid rgba(255,255,255,.35);
    border-radius: 20px;
    color: #fff;
    font-size: .7rem;
    padding: .1rem .5rem;
    cursor: pointer;
    transition: background .15s;
    white-space: nowrap;
    max-width: 90px;
    overflow: hidden;
    text-overflow: ellipsis;
}
.assistant-personality-badge:hover[b-wx0b72wf0n],
.assistant-personality-badge.active[b-wx0b72wf0n] {
    background: rgba(255,255,255,.32);
}
.personality-picker-panel[b-wx0b72wf0n] {
    border-bottom: 1px solid rgba(0,0,0,.08);
    background: var(--bs-body-bg, #fff);
    padding: .6rem .75rem;
    max-height: 260px;
    overflow-y: auto;
}
.personality-pill[b-wx0b72wf0n] {
    background: var(--bs-tertiary-bg, #f8f9fa);
    border: 1px solid var(--bs-border-color, #dee2e6);
    border-radius: 20px;
    font-size: .72rem;
    padding: .15rem .55rem;
    cursor: pointer;
    transition: background .15s, border-color .15s;
    white-space: nowrap;
}
.personality-pill:hover[b-wx0b72wf0n] {
    background: #e9ecef;
}
.personality-pill.active[b-wx0b72wf0n] {
    background: #0d6efd;
    border-color: #0d6efd;
    color: #fff;
}

/* ── Focus Mode ──────────────────────────────────────────────────────────── */
.assistant-panel.focus-mode[b-wx0b72wf0n] {
    width: 420px;
    max-height: 680px;
    box-shadow: 0 12px 48px rgba(0,0,0,.35);
    border-color: #0d6efd;
}
.assistant-panel.focus-mode .assistant-messages[b-wx0b72wf0n] {
    background: #0d1117;
    color: #e6edf3;
}
.assistant-panel.focus-mode .assistant-bubble[b-wx0b72wf0n] {
    background: #161b22;
    color: #e6edf3;
    border-color: #30363d;
}
.assistant-panel.focus-mode .assistant-bubble.user[b-wx0b72wf0n] {
    background: #1f6feb;
    color: #fff;
}

/* ── Chain Bar ───────────────────────────────────────────────────────────── */
.chain-bar[b-wx0b72wf0n] {
    display: flex;
    justify-content: flex-end;
    padding: .15rem 0 0;
}
.chain-continue-btn[b-wx0b72wf0n] {
    font-size: .68rem;
    padding: .1rem .4rem;
    opacity: .7;
    transition: opacity .15s;
}
.chain-continue-btn:hover[b-wx0b72wf0n] { opacity: 1; }
.chain-status-bar[b-wx0b72wf0n] {
    font-size: .72rem;
    color: #6c757d;
    padding: .3rem .75rem;
    border-top: 1px solid var(--bs-border-color, #dee2e6);
    display: flex;
    align-items: center;
}
.btn-xs[b-wx0b72wf0n] {
    font-size: .65rem;
    padding: .1rem .35rem;
}

/* ── Simple Mode Banner ──────────────────────────────────────────────────── */
.simple-mode-banner[b-wx0b72wf0n] {
    display: flex;
    align-items: center;
    padding: .25rem .75rem;
    background: #fef3c7;
    border-bottom: 1px solid #f59e0b;
    font-size: .75rem;
    color: #92400e;
    font-weight: 500;
}

/* ── Workflow Progress Banner ────────────────────────────────────────────── */
.workflow-banner[b-wx0b72wf0n] {
    display: flex;
    align-items: center;
    gap: .4rem;
    padding: .3rem .75rem;
    background: linear-gradient(135deg, #ede9fe 0%, #ddd6fe 100%);
    border-bottom: 1px solid #8b5cf6;
    font-size: .75rem;
    color: #4c1d95;
    font-weight: 500;
}
.workflow-banner-icon[b-wx0b72wf0n] { font-size: .85rem; }
.workflow-banner-label[b-wx0b72wf0n] { flex: 1; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* ── Action Confirmation Bar ─────────────────────────────────────────────── */
.action-confirm-bar[b-wx0b72wf0n] {
    display: flex;
    align-items: center;
    gap: .35rem;
    padding: .35rem .75rem;
    background: linear-gradient(135deg, #fff8e1 0%, #fffde7 100%);
    border-top: 1px solid #f59e0b;
    border-bottom: 1px solid rgba(0,0,0,.06);
    font-size: .78rem;
    animation: slideDown-b-wx0b72wf0n .15s ease-out;
}
.action-confirm-label[b-wx0b72wf0n] {
    font-weight: 500;
    color: #92400e;
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
@keyframes slideDown-b-wx0b72wf0n {
    from { opacity: 0; transform: translateY(-4px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ── Browser Agent Status Strip ─────────────────────────────────────────── */
.browser-agent-strip[b-wx0b72wf0n] {
    display: flex;
    flex-direction: column;
    gap: .3rem;
    padding: .4rem .75rem;
    background: linear-gradient(135deg, #e0f2fe 0%, #f0f9ff 100%);
    border-bottom: 1px solid #0ea5e9;
    font-size: .75rem;
    color: #0c4a6e;
    animation: slideDown-b-wx0b72wf0n .15s ease-out;
}
.browser-agent-strip.paused[b-wx0b72wf0n] {
    background: linear-gradient(135deg, #fef3c7 0%, #fffde7 100%);
    border-bottom-color: #f59e0b;
    color: #78350f;
}
.ba-status-row[b-wx0b72wf0n] {
    display: flex;
    align-items: center;
    gap: .4rem;
    min-width: 0;
}
.ba-icon[b-wx0b72wf0n] { font-size: .95rem; flex-shrink: 0; }
.ba-url[b-wx0b72wf0n]  { flex: 1; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; font-size: .72rem; opacity: .8; }
.ba-steps[b-wx0b72wf0n] { font-size: .7rem; opacity: .65; white-space: nowrap; }
.ba-human-prompt[b-wx0b72wf0n] { font-size: .78rem; font-weight: 500; line-height: 1.4; }
.ba-resume-btn[b-wx0b72wf0n] { font-size: .72rem; padding: .2rem .6rem; align-self: flex-start; }
.ba-stop-btn[b-wx0b72wf0n] { font-size: .65rem; padding: .1rem .35rem; align-self: flex-end; }

/* ── TTS narrator voice list ───────────────────────────────────────────── */
.tts-voice-list[b-wx0b72wf0n] {
    max-height: 200px;
    overflow-y: auto;
    border: 1px solid var(--bs-border-color, #dee2e6);
    border-radius: 6px;
}
.tts-voice-row[b-wx0b72wf0n] {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 5px 8px;
    cursor: pointer;
    border-bottom: 1px solid var(--bs-border-color, #dee2e6);
    transition: background .1s;
    font-size: .78rem;
}
.tts-voice-row:last-child[b-wx0b72wf0n]  { border-bottom: none; }
.tts-voice-row:hover[b-wx0b72wf0n]       { background: var(--bs-light, #f8f9fa); }
.tts-voice-selected[b-wx0b72wf0n]        { background: rgba(13,110,253,.08); font-weight: 600; }
.tts-section-header[b-wx0b72wf0n] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 3px 8px;
    font-size: .65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: #64748b;
    background: var(--bs-light, #f8f9fa);
    border-bottom: 1px solid var(--bs-border-color, #dee2e6);
    border-radius: 6px 6px 0 0;
    position: sticky;
    top: 0;
    z-index: 1;
}

/* ── Anime skin ────────────────────────────────────────────────────────── */
.anime-fab[b-wx0b72wf0n] { background: #1a1a2e; box-shadow: 0 4px 16px rgba(244,114,182,.45); }
.anime-fab-female[b-wx0b72wf0n] { background: #2d1b33; box-shadow: 0 4px 16px rgba(244,114,182,.5); }
.anime-fab-male[b-wx0b72wf0n]   { background: #1a2433; box-shadow: 0 4px 16px rgba(96,165,250,.5); }
.anime-fab:hover[b-wx0b72wf0n]  { box-shadow: 0 6px 24px rgba(244,114,182,.7); }

.anime-panel-female[b-wx0b72wf0n] { border-top: 4px solid #f472b6; }
.anime-panel-female .assistant-header[b-wx0b72wf0n] { background: linear-gradient(135deg,#2d1b33,#4a1942); color: #fce7f3; }
.anime-panel-male[b-wx0b72wf0n]   { border-top: 4px solid #60a5fa; }
.anime-panel-male   .assistant-header[b-wx0b72wf0n] { background: linear-gradient(135deg,#1a2433,#1e3a5f); color: #dbeafe; }

.anime-idle[b-wx0b72wf0n] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    animation: clippyBob-b-wx0b72wf0n 2.5s ease-in-out infinite;
}

/* Ahoge (anime hair spike) */
.anime-ahoge[b-wx0b72wf0n] {
    width: 4px;
    height: 10px;
    border-radius: 2px 2px 0 0;
    margin-bottom: -2px;
    position: relative;
    z-index: 1;
}
.anime-female .anime-ahoge[b-wx0b72wf0n] { background: #c084fc; transform: rotate(-8deg); }
.anime-male   .anime-ahoge[b-wx0b72wf0n] { background: #60a5fa; width: 5px; height: 8px; transform: rotate(5deg); }

/* Face */
.anime-face[b-wx0b72wf0n] {
    width: 34px;
    height: 30px;
    border-radius: 50% 50% 45% 45%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}
.anime-female .anime-face[b-wx0b72wf0n] { background: #fde8f0; border: 1.5px solid #f9a8d4; }
.anime-male   .anime-face[b-wx0b72wf0n] { background: #e0eeff; border: 1.5px solid #93c5fd; }

.anime-face.sm[b-wx0b72wf0n] {
    width: 24px;
    height: 20px;
    gap: 3px;
}

/* Eyes — big anime ovals */
.anime-eye[b-wx0b72wf0n] {
    width: 8px;
    height: 11px;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    animation: clippyBlink-b-wx0b72wf0n 3.5s infinite;
    flex-shrink: 0;
}
.anime-female .anime-eye[b-wx0b72wf0n] { background: #7c3aed; border: 1.5px solid #5b21b6; }
.anime-male   .anime-eye[b-wx0b72wf0n] { background: #1d4ed8; border: 1.5px solid #1e3a8a; }

.anime-eye.sm[b-wx0b72wf0n] { width: 5px; height: 7px; }

.anime-pupil[b-wx0b72wf0n] {
    position: absolute;
    width: 4px;
    height: 5px;
    background: #000;
    border-radius: 50%;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
}
.anime-eye.sm .anime-pupil[b-wx0b72wf0n] { width: 3px; height: 3px; bottom: 1px; }

.anime-shine[b-wx0b72wf0n] {
    position: absolute;
    width: 3px;
    height: 3px;
    background: rgba(255,255,255,.9);
    border-radius: 50%;
    top: 2px;
    right: 1px;
}

/* Nose — tiny dot */
.anime-nose[b-wx0b72wf0n] {
    position: absolute;
    bottom: 7px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 2px;
    border-radius: 50%;
    background: rgba(0,0,0,.25);
}

/* Mouth — small curved smile */
.anime-mouth[b-wx0b72wf0n] {
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 10px;
    height: 5px;
    border: 1.5px solid rgba(0,0,0,.4);
    border-top: none;
    border-radius: 0 0 8px 8px;
}
.anime-female .anime-mouth[b-wx0b72wf0n] { border-color: #f472b6; }
.anime-male   .anime-mouth[b-wx0b72wf0n] { border-color: #60a5fa; }

/* Blush (female only) */
.anime-blush[b-wx0b72wf0n] {
    position: absolute;
    bottom: 9px;
    width: 7px;
    height: 4px;
    background: rgba(251,113,133,.5);
    border-radius: 50%;
}
.anime-blush.left[b-wx0b72wf0n]  { left: 2px; }
.anime-blush.right[b-wx0b72wf0n] { right: 2px; }

/* Mini header avatar */
.anime-mini[b-wx0b72wf0n] { display: flex; align-items: center; }

/* Small mouth for mini header avatar */
.anime-mouth.sm[b-wx0b72wf0n] {
    width: 6px;
    height: 3px;
    bottom: 1px;
    border-radius: 0 0 4px 4px;
}

/* ── Talking animation ─────────────────────────────────────────────────────── */

@keyframes animeSpeak-b-wx0b72wf0n {
    0%,100% { height: 5px; border-radius: 0 0 8px 8px; }
    25%      { height: 9px; border-radius: 0 0 5px 5px; border-top: none; }
    50%      { height: 3px; border-radius: 0 0 8px 8px; }
    75%      { height: 8px; border-radius: 0 0 4px 4px; }
}
.anime-speaking .anime-mouth[b-wx0b72wf0n] {
    animation: animeSpeak-b-wx0b72wf0n 180ms steps(1, end) infinite;
}
.anime-speaking .anime-mouth.sm[b-wx0b72wf0n] {
    animation: animeSpeak-b-wx0b72wf0n 180ms steps(1, end) infinite;
}

@keyframes clippySpeak-b-wx0b72wf0n {
    0%,100% { height: 4px; border-radius: 0 0 5px 5px; }
    33%      { height: 8px; border-radius: 0 0 3px 3px; }
    66%      { height: 2px; border-radius: 0 0 5px 5px; }
}
.clippy-speaking .clippy-mouth[b-wx0b72wf0n] {
    animation: clippySpeak-b-wx0b72wf0n 170ms steps(1, end) infinite;
}

/* Custom AI-generated avatar image */
.anime-custom-fab[b-wx0b72wf0n] {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    animation: clippyBob-b-wx0b72wf0n 2.5s ease-in-out infinite;
}
.anime-custom-mini[b-wx0b72wf0n] {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    object-fit: cover;
}

/* ── Tutorial progress bar ──────────────────────────────────────────────── */
.tutorial-bar[b-wx0b72wf0n] {
    display: flex;
    align-items: center;
    gap: .4rem;
    background: rgba(162,155,254,.1);
    border: 1px solid rgba(162,155,254,.25);
    border-radius: 8px;
    padding: .3rem .6rem;
    margin: .2rem .5rem .1rem;
    font-size: .72rem;
}
.tutorial-bar-icon[b-wx0b72wf0n] { flex-shrink: 0; }
.tutorial-bar-text[b-wx0b72wf0n] { flex: 1; color: rgba(255,255,255,.8); }
.tutorial-bar-link[b-wx0b72wf0n] {
    color: #a29bfe;
    text-decoration: none;
    font-size: .68rem;
    flex-shrink: 0;
}
.tutorial-bar-link:hover[b-wx0b72wf0n] { text-decoration: underline; }
.tutorial-bar-exit[b-wx0b72wf0n] {
    background: none;
    border: none;
    color: rgba(255,255,255,.4);
    font-size: .75rem;
    padding: 0;
    cursor: pointer;
    flex-shrink: 0;
    line-height: 1;
}
.tutorial-bar-exit:hover[b-wx0b72wf0n] { color: #fff; }
/* /Components/Shared/LevelUpOverlay.razor.rz.scp.css */
/* ── Level-up full-screen overlay ────────────────────────────────────────── */
.levelup-overlay[b-iumyogu3cb] {
    position: fixed;
    inset: 0;
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,.75);
    backdrop-filter: blur(4px);
    cursor: pointer;
}
.levelup-enter[b-iumyogu3cb] {
    animation: lvlFadeIn-b-iumyogu3cb .4s ease both;
}
.levelup-leave[b-iumyogu3cb] {
    animation: lvlFadeOut-b-iumyogu3cb .5s ease both;
}
@keyframes lvlFadeIn-b-iumyogu3cb {
    from { opacity: 0; }
    to   { opacity: 1; }
}
@keyframes lvlFadeOut-b-iumyogu3cb {
    from { opacity: 1; }
    to   { opacity: 0; }
}

/* ── Card ────────────────────────────────────────────────────────────────── */
.levelup-card[b-iumyogu3cb] {
    text-align: center;
    padding: 2.5rem 3rem;
    background: linear-gradient(160deg, #0f0c29, #302b63, #24243e);
    border: 1px solid rgba(255,215,0,.35);
    border-radius: 20px;
    box-shadow: 0 0 60px rgba(255,215,0,.25), 0 20px 60px rgba(0,0,0,.6);
    max-width: 380px;
    width: 90%;
    animation: lvlCardPop-b-iumyogu3cb .5s cubic-bezier(.175,.885,.32,1.275) both;
}
@keyframes lvlCardPop-b-iumyogu3cb {
    from { transform: scale(.7) translateY(40px); opacity: 0; }
    to   { transform: scale(1) translateY(0);     opacity: 1; }
}

.levelup-badge[b-iumyogu3cb] {
    font-size: 2rem;
    animation: lvlBadgeSpin-b-iumyogu3cb 1s ease both;
}
@keyframes lvlBadgeSpin-b-iumyogu3cb {
    from { transform: rotate(-180deg) scale(0); }
    to   { transform: rotate(0)       scale(1); }
}

.levelup-label[b-iumyogu3cb] {
    font-size: 1rem;
    font-weight: 900;
    letter-spacing: .25em;
    color: #ffd700;
    text-shadow: 0 0 16px #ffd700;
    margin: .4rem 0 .2rem;
    animation: lvlGlow-b-iumyogu3cb 1.5s ease-in-out infinite;
}
@keyframes lvlGlow-b-iumyogu3cb {
    0%, 100% { text-shadow: 0 0 16px #ffd700; }
    50%       { text-shadow: 0 0 32px #ffd700, 0 0 8px #fff; }
}

.levelup-icon[b-iumyogu3cb] {
    font-size: 4rem;
    line-height: 1.2;
    animation: lvlIconBounce-b-iumyogu3cb .8s .2s cubic-bezier(.175,.885,.32,1.275) both;
}
@keyframes lvlIconBounce-b-iumyogu3cb {
    from { transform: scale(0); opacity: 0; }
    to   { transform: scale(1); opacity: 1; }
}

.levelup-title[b-iumyogu3cb] {
    font-size: 1.6rem;
    font-weight: 800;
    color: #fff;
    margin: .4rem 0 .2rem;
    text-shadow: 0 2px 8px rgba(0,0,0,.5);
}

.levelup-desc[b-iumyogu3cb] {
    font-size: .85rem;
    color: rgba(255,255,255,.65);
    margin-bottom: 1.25rem;
}

/* ── XP bar fill ─────────────────────────────────────────────────────────── */
.levelup-xpbar-wrap[b-iumyogu3cb] {
    height: 8px;
    background: rgba(255,255,255,.1);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 1rem;
}
.levelup-xpbar[b-iumyogu3cb] {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #a29bfe, #ffd700);
    border-radius: 4px;
    transition: width 1.2s cubic-bezier(.4,0,.2,1);
}
.levelup-xpbar-full[b-iumyogu3cb] {
    width: 100%;
}

.levelup-dismiss[b-iumyogu3cb] {
    font-size: .7rem;
    color: rgba(255,255,255,.35);
    letter-spacing: .05em;
}
