@import '_content/Blazor.Bootstrap/Blazor.Bootstrap.olwso25aue.bundle.scp.css';
@import '_content/Blazored.Toast/Blazored.Toast.bundle.scp.css';
@import '_content/HACC.UI.Shared/HACC.UI.Shared.l5e3qxpvx2.bundle.scp.css';

/* /Components/Common/CatSelect.razor.rz.scp.css */
/* Shared design dropdown. Tokens (--surface/--line/--accent/…) inherit from the host page
   scope (.dlx/.tmx/…); fallbacks keep it presentable if used outside a scoped container. */

.csel[b-qg991rlnwb] {
    position: relative;
    width: 100%;
    font-family: 'Hanken Grotesk', system-ui, sans-serif;
}

/* Lift the whole control above the clickaway while open. */
.csel.open[b-qg991rlnwb] {
    z-index: 1000;
}

.csel .catbtn[b-qg991rlnwb] {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    height: 48px;
    padding: 0 14px;
    background: var(--surface, #ffffff);
    border: 1px solid var(--line, #e7e4df);
    border-radius: 11px;
    font-family: inherit;
    font-size: 14.5px;
    font-weight: 500;
    color: var(--ink, #3a352f);
    cursor: pointer;
    text-align: left;
    transition: border-color .12s, box-shadow .12s;
}

.csel.dense .catbtn[b-qg991rlnwb] { height: 42px; border-radius: 10px; }

.csel .catbtn:hover[b-qg991rlnwb] { border-color: var(--ink-3, #9a938a); }
.csel.open .catbtn[b-qg991rlnwb] { border-color: var(--accent, #c65a2e); box-shadow: 0 0 0 3px var(--accent-soft, #f6e9e0); }
.csel .catbtn.invalid[b-qg991rlnwb] { border-color: var(--urgent, #b23b2a); }
.csel .catbtn:disabled[b-qg991rlnwb] { opacity: .6; cursor: default; }

.csel .catbtn .lbl[b-qg991rlnwb] {
    flex: 1;
    text-align: left;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.csel .catbtn .lbl.ph[b-qg991rlnwb] { color: var(--ink-3, #9a938a); font-weight: 400; }

.csel .catbtn .chev[b-qg991rlnwb] {
    width: 16px;
    height: 16px;
    color: var(--ink-3, #9a938a);
    flex: none;
    transition: transform .15s;
}
.csel.open .catbtn .chev[b-qg991rlnwb] { transform: rotate(180deg); }

.csel .catmenu[b-qg991rlnwb] {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    background: var(--surface, #ffffff);
    border: 1px solid var(--line, #e7e4df);
    border-radius: 13px;
    box-shadow: var(--shadow, 0 8px 24px -12px rgba(40, 32, 24, .28));
    padding: 6px;
    /* Above the clickaway (999). The open .csel is z-1000 (its own stacking context),
       so this also keeps the menu clickable if that assumption is ever undercut. */
    z-index: 1001;
    max-height: 300px;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

.csel .catsearch[b-qg991rlnwb] { padding: 4px 4px 8px; }
.csel .catsearch input[b-qg991rlnwb] {
    width: 100%;
    height: 40px;
    border: 1px solid var(--line, #e7e4df);
    border-radius: 9px;
    padding: 0 12px;
    font-family: inherit;
    font-size: 14px;
    color: var(--ink, #3a352f);
    background: var(--surface, #ffffff);
    outline: none;
}
.csel .catsearch input:focus[b-qg991rlnwb] { border-color: var(--accent, #c65a2e); }

.csel .catopt[b-qg991rlnwb] {
    display: flex;
    align-items: center;
    gap: 11px;
    width: 100%;
    padding: 11px;
    border: none;
    background: none;
    border-radius: 9px;
    font-family: inherit;
    font-weight: 500;
    font-size: 14.5px;
    color: var(--ink, #3a352f);
    text-align: left;
    cursor: pointer;
}
.csel .catopt:hover[b-qg991rlnwb] { background: var(--surface-2, #faf8f5); }
.csel .catopt .optlbl[b-qg991rlnwb] { flex: 1; overflow-wrap: anywhere; }

.csel .catopt .cbx[b-qg991rlnwb] {
    width: 20px;
    height: 20px;
    border-radius: 6px;
    border: 2px solid var(--line, #e7e4df);
    display: grid;
    place-items: center;
    flex: none;
    transition: .12s;
}
.csel .catopt .cbx svg[b-qg991rlnwb] { width: 13px; height: 13px; color: #fff; stroke-width: 3; opacity: 0; }
.csel .catopt.on .cbx[b-qg991rlnwb] { background: var(--accent, #c65a2e); border-color: var(--accent, #c65a2e); }
.csel .catopt.on .cbx svg[b-qg991rlnwb] { opacity: 1; }

.csel .catempty[b-qg991rlnwb] { padding: 12px 11px; color: var(--ink-3, #9a938a); font-size: 13.5px; }

/* ---- quick-add footer (the tracker's "+ New category…" pattern, standardised) ----
   Sticky at the menu's bottom edge so long, scrolling lists never hide the affordance;
   the negative offsets swallow the menu's 6px padding so it sits flush. */
.csel .qaddwrap[b-qg991rlnwb] {
    position: sticky;
    bottom: -6px;
    margin: 2px -6px -6px;
    padding: 4px 6px 6px;
    background: var(--surface, #ffffff);
    border-top: 1px solid var(--line-2, #f0ede9);
    border-radius: 0 0 12px 12px;
}

.csel .qaddbtn[b-qg991rlnwb] {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    padding: 10px 11px;
    border: none;
    background: none;
    border-radius: 9px;
    font-family: inherit;
    font-weight: 600;
    font-size: 14px;
    color: var(--accent-ink, #99502b);
    text-align: left;
    cursor: pointer;
}
.csel .qaddbtn:hover[b-qg991rlnwb] { background: var(--surface-2, #faf8f5); }
.csel .qaddbtn svg[b-qg991rlnwb] { width: 16px; height: 16px; stroke-width: 2.4; flex: none; }

.csel .qaddrow[b-qg991rlnwb] { display: flex; align-items: center; gap: 6px; }
.csel .qaddrow input[b-qg991rlnwb] {
    flex: 1;
    min-width: 0;
    height: 40px;
    border: 1px solid var(--accent, #c65a2e);
    border-radius: 9px;
    padding: 0 12px;
    font-family: inherit;
    font-size: 14px;
    color: var(--ink, #3a352f);
    background: var(--surface, #ffffff);
    outline: none;
}
.csel .qaddrow input:focus[b-qg991rlnwb] { box-shadow: 0 0 0 3px var(--accent-soft, #f6e9e0); }
.csel .qaddrow input.invalid[b-qg991rlnwb] { border-color: var(--urgent, #b23b2a); }

.csel .qbtn[b-qg991rlnwb] {
    width: 40px;
    height: 40px;
    flex: none;
    border-radius: 9px;
    display: grid;
    place-items: center;
    border: 1px solid var(--line, #e7e4df);
    font-family: inherit;
    cursor: pointer;
}
.csel .qbtn svg[b-qg991rlnwb] { width: 16px; height: 16px; stroke-width: 2.6; }
.csel .qbtn.ok[b-qg991rlnwb] { background: var(--accent, #c65a2e); border-color: var(--accent, #c65a2e); color: #fff; }
.csel .qbtn.ok:hover[b-qg991rlnwb] { filter: brightness(.94); }
.csel .qbtn.ok:disabled[b-qg991rlnwb] { opacity: .6; cursor: default; }
.csel .qbtn.x[b-qg991rlnwb] { background: var(--surface, #ffffff); color: var(--ink-3, #9a938a); }
.csel .qbtn.x:hover[b-qg991rlnwb] { color: var(--ink, #3a352f); border-color: var(--ink-3, #9a938a); }

/* Full-screen click-catcher that closes the menu; sits just below the open control. */
.csel-away[b-qg991rlnwb] { position: fixed; inset: 0; z-index: 999; background: transparent; }

/* ---- floating-menu mode (opt-in: FloatMenu=true) ─────────────────────────────────────────
   The menu is pulled out to the VIEWPORT (position:fixed) and glued to the trigger by JS
   (catSelectFloat.position in site.js), so no ancestor overflow:auto/hidden can clip it — used
   by the checklist items table's Control column, which lives inside an overflow-x-auto scroller.
   JS sets top/left/width/max-height inline and then reveals the menu; it starts hidden here so
   there's no unpositioned flash on open. Raising the whole open control's z-index lifts its
   stacking context above modals so the fixed child isn't trapped beneath them; the non-float
   path (.csel .catmenu, position:absolute) above is left completely untouched. */
.csel.floatmenu.open[b-qg991rlnwb] { z-index: 20000; }
.csel.floatmenu .catmenu[b-qg991rlnwb] {
    position: fixed;
    top: 0;
    left: 0;
    right: auto;
    visibility: hidden;
    /* Above Bootstrap modals (~1055), the design .pmodal-ov overlays (1040–1060) and the toast
       container (1050). JS sets an explicit max-height per open so a long list scrolls in-viewport. */
    z-index: 20000;
}

@media (pointer: coarse) {
    .csel .catbtn[b-qg991rlnwb] { font-size: 16px; }
    .csel .catsearch input[b-qg991rlnwb] { font-size: 16px; }
    .csel .qaddrow input[b-qg991rlnwb] { font-size: 16px; } /* stop iOS Safari zooming on focus */
}
/* /Components/Common/FavStar.razor.rz.scp.css */
/* FavStar — the topbar favourite-star toggle. Self-contained like CatSelect: tokens inherit
   from the host page scope (.rcx/.clx/…) with fallbacks, because every page styles .btn
   differently. The isolated selector (.favstar[b-…]) also outranks page-level `button`
   resets (e.g. `.rcx button { border:none; background:none; }`). 44px square touch target. */

.favstar[b-prnzh5gbdh] {
    width: 44px;
    height: 44px;
    flex: none;
    display: inline-grid;
    place-items: center;
    padding: 0;
    background: var(--surface, #ffffff);
    border: 1px solid var(--line, #e7e4df);
    border-radius: 12px;
    color: var(--ink-3, #9a938a);
    cursor: pointer;
    font-family: inherit;
    transition: color .12s, border-color .12s, background .12s;
}

.favstar:hover[b-prnzh5gbdh] { border-color: var(--ink-3, #9a938a); color: var(--ink-2, #6b645c); }

.favstar svg[b-prnzh5gbdh] { width: 20px; height: 20px; display: block; }

/* Favourited: filled accent star on the soft accent tint. */
.favstar.on[b-prnzh5gbdh] { background: var(--accent-soft, #f6e9e0); border-color: var(--accent-soft, #f6e9e0); color: var(--accent, #c65a2e); }
.favstar.on:hover[b-prnzh5gbdh] { border-color: var(--accent, #c65a2e); }
/* /Components/Common/FilterBar.razor.rz.scp.css */
/* Standard compact filter row. Tokens (--surface/--ink/--line/…) inherit from the host page
   scope (.rcx/.clx/…); fallbacks keep it presentable if used outside a scoped container.
   Slotted fb-* atoms are styled via ::deep so every page's filters look identical. */

.fbar[b-03zxy1o3yy] {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    font-family: 'Hanken Grotesk', system-ui, sans-serif;
    /* Wrap-capable at EVERY width: a wide quick seg (Returns' four Kind buttons) must drop to
       its own row rather than paint past the card edge — iPad portrait beside an expanded
       sidebar leaves ~506px of content, less than that seg row's hard minimum (review-caught;
       the old per-page toolbars wrapped at base too). */
    flex-wrap: wrap;
}

/* ---------- search ---------- */
.fbar .fsearch[b-03zxy1o3yy] {
    display: flex;
    align-items: center;
    gap: 9px;
    background: var(--surface, #fff);
    border: 1px solid var(--line, #e7e4df);
    border-radius: 11px;
    height: 46px;
    padding: 0 14px;
    min-width: 120px;
    flex: 1 1 auto;
}
.fbar .fsearch:focus-within[b-03zxy1o3yy] { border-color: var(--accent, #c96f43); }
.fbar .fsearch svg[b-03zxy1o3yy] { width: 18px; height: 18px; color: var(--ink-3, #9b958c); flex: none; }
.fbar .fsearch input[b-03zxy1o3yy] {
    border: none; outline: none; background: none;
    font-family: inherit; font-size: 14.5px; width: 100%;
    color: var(--ink, #3a352f);
}

/* ---------- quick seg (slotted) ---------- */
.fbar[b-03zxy1o3yy]  .fb-seg {
    display: flex;
    background: var(--surface, #fff);
    border: 1px solid var(--line, #e7e4df);
    border-radius: 11px;
    padding: 4px;
    gap: 2px;
    flex: none;
    min-width: 0;
}
.fbar[b-03zxy1o3yy]  .fb-seg button {
    padding: 0 14px;
    height: 38px;
    border: none;
    background: none;
    border-radius: 8px;
    font-family: inherit;
    font-weight: 600;
    font-size: 13.5px;
    color: var(--ink-2, #6b655d);
    display: flex;
    align-items: center;
    gap: 7px;
    white-space: nowrap;
    cursor: pointer;
}
.fbar[b-03zxy1o3yy]  .fb-seg button .cnt {
    font-family: 'Geist Mono', monospace;
    font-size: 12px;
    background: var(--line-2, #f0ede8);
    padding: 1px 6px;
    border-radius: 6px;
    color: var(--ink-2, #6b655d);
}
.fbar[b-03zxy1o3yy]  .fb-seg button.on { background: var(--ink, #3a352f); color: #fff; }
.fbar[b-03zxy1o3yy]  .fb-seg button.on .cnt { background: oklch(1 0 0 / .2); color: #fff; }

/* ---------- the Filters button ---------- */
.fbar .fbtn[b-03zxy1o3yy] {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    height: 46px;
    padding: 0 16px;
    background: var(--surface, #fff);
    border: 1px solid var(--line, #e7e4df);
    border-radius: 11px;
    font-family: inherit;
    font-weight: 600;
    font-size: 14px;
    color: var(--ink-2, #6b655d);
    cursor: pointer;
    flex: none;
    white-space: nowrap;
    transition: .12s;
}
.fbar .fbtn:hover[b-03zxy1o3yy], .fbar .fbtn.open[b-03zxy1o3yy] { border-color: var(--ink-3, #9b958c); color: var(--ink, #3a352f); }
.fbar .fbtn svg[b-03zxy1o3yy] { width: 17px; height: 17px; flex: none; }
.fbar .fbtn .fbadge[b-03zxy1o3yy] {
    min-width: 19px;
    height: 19px;
    border-radius: 10px;
    background: var(--ink, #3a352f);
    color: #fff;
    font-family: 'Geist Mono', monospace;
    font-size: 11.5px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 5px;
}

/* ---------- panel: anchored popover (desktop / tablet) ---------- */
/* z-index 1030/1031: above the page content but BELOW the pages' .pmodal-ov record/confirm
   modals (1040) and the toast container (1050) — an open filter panel must never float over
   a modal dialog (review-caught). */
.fbar .fscrim[b-03zxy1o3yy] { position: fixed; inset: 0; z-index: 1030; }
.fbar .fpanel[b-03zxy1o3yy] {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    z-index: 1031;
    /* Wide enough that a five-chip period row ("All time … 90 days") AND a four-chip counted
       Type row sit on ONE line each (per David). */
    width: min(512px, calc(100vw - 48px));
    background: var(--surface, #fff);
    border: 1px solid var(--line, #e7e4df);
    border-radius: 16px;
    box-shadow: 0 18px 44px -14px oklch(0.25 0.02 60 / .35);
    animation: fbarIn-b-03zxy1o3yy .16s ease;
}
@keyframes fbarIn-b-03zxy1o3yy { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
.fbar .fgrab[b-03zxy1o3yy] { display: none; }
.fbar .fpanel-b[b-03zxy1o3yy] { padding: 16px 18px 4px; }
.fbar .fpanel-f[b-03zxy1o3yy] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 12px 18px;
    border-top: 1px solid var(--line-2, #f0ede8);
}
.fbar .fclear[b-03zxy1o3yy] {
    border: none; background: none; cursor: pointer; padding: 4px 0;
    font-family: inherit; font-size: 13px; font-weight: 600;
    color: var(--ink-2, #6b655d); text-decoration: underline;
}
.fbar .fclear:hover[b-03zxy1o3yy] { color: var(--urgent, #b3401f); }
.fbar .fnone[b-03zxy1o3yy] { font-size: 13px; color: var(--ink-3, #9b958c); }
.fbar .fdone[b-03zxy1o3yy] {
    border: 1px solid var(--line, #e7e4df); background: var(--surface, #fff); cursor: pointer;
    height: 38px; padding: 0 18px; border-radius: 10px;
    font-family: inherit; font-size: 13.5px; font-weight: 600; color: var(--ink, #3a352f);
}
.fbar .fdone:hover[b-03zxy1o3yy] { border-color: var(--ink-3, #9b958c); }

/* ---------- panel atoms (slotted) ---------- */
.fbar[b-03zxy1o3yy]  .fb-group {
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
    color: var(--ink-3, #9b958c);
    margin: 0 0 8px;
}
.fbar[b-03zxy1o3yy]  .fb-group:not(:first-child) { margin-top: 16px; }
/* One line per chip group, always (per David) — on narrow sheets the row scrolls sideways
   rather than wrapping. */
.fbar[b-03zxy1o3yy]  .fb-chips { display: flex; flex-wrap: nowrap; gap: 7px; overflow-x: auto; scrollbar-width: none; }
.fbar[b-03zxy1o3yy]  .fb-chips::-webkit-scrollbar { display: none; }
.fbar[b-03zxy1o3yy]  .fb-chip {
    flex: none;
    border: 1px solid var(--line, #e7e4df);
    background: var(--surface, #fff);
    border-radius: 20px;
    padding: 0 13px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: inherit;
    font-size: 13px;
    font-weight: 600;
    color: var(--ink-2, #6b655d);
    cursor: pointer;
    white-space: nowrap;
    transition: .12s;
}
.fbar[b-03zxy1o3yy]  .fb-chip:hover { border-color: var(--ink-3, #9b958c); color: var(--ink, #3a352f); }
.fbar[b-03zxy1o3yy]  .fb-chip.on { background: var(--ink, #3a352f); border-color: var(--ink, #3a352f); color: #fff; }
.fbar[b-03zxy1o3yy]  .fb-chip .cnt {
    font-family: 'Geist Mono', monospace;
    font-size: 11.5px;
    background: var(--line-2, #f0ede8);
    padding: 0 6px;
    border-radius: 6px;
    color: var(--ink-2, #6b655d);
}
.fbar[b-03zxy1o3yy]  .fb-chip.on .cnt { background: oklch(1 0 0 / .2); color: #fff; }
.fbar[b-03zxy1o3yy]  .fb-dates {
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--surface, #fff);
    border: 1px solid var(--line, #e7e4df);
    border-radius: 11px;
    height: 44px;
    padding: 0 10px;
    margin-top: 8px;
}
.fbar[b-03zxy1o3yy]  .fb-dates:focus-within { border-color: var(--accent, #c96f43); }
.fbar[b-03zxy1o3yy]  .fb-dates input {
    border: none; outline: none; background: none;
    font-family: inherit; font-size: 13.5px;
    color: var(--ink, #3a352f);
    flex: 1; min-width: 0;
}
.fbar[b-03zxy1o3yy]  .fb-dates .sep { color: var(--ink-3, #9b958c); flex: none; }
.fbar[b-03zxy1o3yy]  .fb-dates .dclear {
    width: 30px; height: 30px; border: none; background: none; cursor: pointer;
    border-radius: 8px; display: grid; place-items: center;
    color: var(--ink-3, #9b958c); font-size: 17px; flex: none;
}
.fbar[b-03zxy1o3yy]  .fb-dates .dclear:hover { background: var(--surface-2, #faf8f5); color: var(--ink, #3a352f); }

/* touch: 16px inputs so iOS Safari doesn't zoom on focus */
@media (pointer: coarse) {
    .fbar .fsearch input[b-03zxy1o3yy], .fbar[b-03zxy1o3yy]  .fb-dates input { font-size: 16px; }
}

/* tablet: tighten so one row survives beside an expanded sidebar */
@media (max-width: 1180px) {
    .fbar[b-03zxy1o3yy]  .fb-seg button { padding: 0 10px; }
    .fbar .fbtn[b-03zxy1o3yy] { padding: 0 12px; }
    .fbar .fsearch[b-03zxy1o3yy] { min-width: 100px; }
}

/* phone: search + Filters stay on row one; the quick seg drops to a full-width second row.
   The panel becomes a bottom sheet. */
@media (max-width: 680px) {
    .fbar[b-03zxy1o3yy] { flex-wrap: wrap; }
    .fbar .fbtn .flab[b-03zxy1o3yy] { display: none; }
    .fbar[b-03zxy1o3yy]  .fb-seg { order: 3; flex-basis: 100%; overflow-x: auto; }
    .fbar[b-03zxy1o3yy]  .fb-seg button { flex: 1; justify-content: center; }
    .fbar .fscrim[b-03zxy1o3yy] { background: oklch(0.22 0.02 60 / .45); }
    .fbar .fpanel[b-03zxy1o3yy] {
        position: fixed;
        top: auto;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        border-radius: 18px 18px 0 0;
        border-left: none;
        border-right: none;
        border-bottom: none;
        max-height: 80dvh;
        overflow: auto;
        animation: fbarUp-b-03zxy1o3yy .2s ease;
        padding-bottom: env(safe-area-inset-bottom);
    }
    .fbar .fgrab[b-03zxy1o3yy] {
        display: block;
        width: 40px;
        height: 4px;
        border-radius: 2px;
        background: var(--line, #e7e4df);
        margin: 10px auto 0;
    }
}
@keyframes fbarUp-b-03zxy1o3yy { from { transform: translateY(24px); opacity: .6; } to { transform: none; opacity: 1; } }
/* /Components/Layout/MainLayout.razor.rz.scp.css */
/*.page {
    position: relative;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

.sidebar {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row ::deep a, .top-row ::deep .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

    .top-row ::deep a:hover, .top-row ::deep .btn-link:hover {
        text-decoration: underline;
    }

    .top-row ::deep a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row {
        justify-content: space-between;
    }

    .top-row ::deep a, .top-row ::deep .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page {
        flex-direction: row;
    }

    .sidebar {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth ::deep a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }*/

    /* .top-row, article {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    } */
/*}

#blazor-error-ui {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }*/
/* /Components/Layout/NavMenu.razor.rz.scp.css */
/* .navbar-toggler {
    appearance: none;
    cursor: pointer;
    width: 3.5rem;
    height: 2.5rem;
    color: white;
    position: absolute;
    top: 0.5rem;
    right: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") no-repeat center/1.75rem rgba(255, 255, 255, 0.1);
}

.navbar-toggler:checked {
    background-color: rgba(255, 255, 255, 0.5);
}

.top-row {
    height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

.navbar-brand {
    font-size: 1.1rem;
}

.bi {
    display: inline-block;
    position: relative;
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.75rem;
    top: -1px;
    background-size: cover;
}

.bi-house-door-fill-nav-menu {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-house-door-fill' 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 {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-plus-square-fill' 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 {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-list-nested' 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");
}

.nav-item {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type {
        padding-top: 1rem;
    }

    .nav-item:last-of-type {
        padding-bottom: 1rem;
    }

    .nav-item ::deep .nav-link {
        color: #d7d7d7;
        background: none;
        border: none;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
        width: 100%;
    }

.nav-item ::deep a.active {
    background-color: rgba(255,255,255,0.37);
    color: white;
}

.nav-item ::deep .nav-link:hover {
    background-color: rgba(255,255,255,0.1);
    color: white;
}

.nav-scrollable {
    display: none;
}

.navbar-toggler:checked ~ .nav-scrollable {
    display: block;
}

@media (min-width: 641px) {
    .navbar-toggler {
        display: none;
    }

    .nav-scrollable {

        display: block;

        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
} */
