/* ============================================================
   TheShift – Design System · THE HALL brand palette
   (deep teal base, cream ink, gold + lime accents, glass)
   ============================================================ */
:root {
    --bg-0: #00252b;        /* darkest teal */
    --bg-1: #003f48;        /* THE HALL primary teal (rgb 0,63,72) */

    --accent: #c6a55a;      /* THE HALL gold */
    --accent-2: #d9bd7e;    /* light gold (gradient partner) */
    --accent-3: #d1eb18;    /* THE HALL lime (pop) */
    --teal: #1f7a86;        /* mid teal */
    --cream: #f9f0df;       /* THE HALL background cream */

    --ink: #f9f0df;         /* cream text on teal */
    --muted: rgba(249, 240, 223, .62);
    --faint: rgba(249, 240, 223, .40);

    --glass-bg: rgba(255, 255, 255, .06);
    --glass-bg-2: rgba(255, 255, 255, .10);
    --glass-brd: rgba(249, 240, 223, .14);
    --glass-brd-2: rgba(198, 165, 90, .40);

    --radius: 16px;
    --radius-lg: 24px;
    --radius-pill: 999px;
    --blur: 18px;

    --shadow: 0 12px 40px rgba(0, 0, 0, .45);
    --shadow-sm: 0 4px 16px rgba(0, 0, 0, .30);
    --glow: 0 0 40px rgba(198, 165, 90, .35);

    --ease: cubic-bezier(.22, 1, .36, 1);

    --font: "Figtree", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
    --display: "Figtree", var(--font);

    --topbar-h: 60px;
    --bottomnav-h: 68px;
    --container: 760px;
}

* { box-sizing: border-box; }

html, body {
    margin: 0;
    background: var(--bg-0);
    color: var(--ink);
    font-family: var(--font);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overscroll-behavior-y: none;
}

h1, h2, h3, h4 {
    font-family: var(--display);
    letter-spacing: -.02em;
    line-height: 1.12;
    margin: 0;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; }
img, svg { display: block; max-width: 100%; }
h1:focus, [tabindex="-1"]:focus { outline: none; }

/* ---------- Animated background ---------- */
.app-bg {
    position: fixed;
    inset: 0;
    z-index: -1;
    overflow: hidden;
    /* Dezente, abgedunkelte Innenaufnahme von THE HALL hinter dem Glas.
       Der dunkle Verlauf sorgt für Lesbarkeit; die Marke bleibt über Gold/Teal-Akzente sichtbar. */
    background:
        linear-gradient(180deg, rgba(3, 20, 23, .52) 0%, rgba(5, 11, 14, .66) 55%, rgba(3, 7, 9, .80) 100%),
        url("../img/venue2.webp") center / cover no-repeat;
    background-color: var(--bg-0);
}
.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: .12;
    animation: floaty 16s var(--ease) infinite;
}
.blob--1 { width: 320px; height: 320px; top: -60px; right: -40px; background: var(--accent); }
.blob--2 { width: 300px; height: 300px; bottom: 6%; left: -70px; background: var(--teal); animation-delay: -5s; opacity: .14; }
.blob--3 { display: none; }
@keyframes floaty {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-26px) scale(1.06); }
}

/* ---------- Glass primitive ---------- */
.glass {
    background: var(--glass-bg);
    border: 1px solid var(--glass-brd);
    -webkit-backdrop-filter: blur(var(--blur));
    backdrop-filter: blur(var(--blur));
}

/* ---------- Top bar ---------- */
.topbar {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 50;
    height: var(--topbar-h);
    display: flex;
    align-items: center;
    gap: .5rem;
    padding: 0 .9rem;
    border-left: 0; border-right: 0; border-top: 0;
}
.brand {
    display: flex;
    align-items: center;
    gap: .55rem;
    font-family: var(--display);
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: -.01em;
}
.brand__mark {
    display: inline-grid;
    place-items: center;
    width: 30px; height: 30px;
    border-radius: 9px;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    box-shadow: var(--glow);
}
.brand__mark svg { width: 18px; height: 18px; color: var(--bg-1); }
.brand em { color: var(--accent); font-style: normal; }
.topbar__spacer { flex: 1; }

/* ---------- Icon button ---------- */
.icon-btn {
    display: inline-grid;
    place-items: center;
    width: 40px; height: 40px;
    border-radius: 12px;
    border: 1px solid transparent;
    background: transparent;
    color: var(--ink);
    cursor: pointer;
    transition: background .2s, border-color .2s, transform .15s var(--ease);
}
.icon-btn:hover { background: var(--glass-bg-2); border-color: var(--glass-brd); }
.icon-btn:active { transform: scale(.94); }
.icon-btn svg { width: 22px; height: 22px; }

/* ---------- Drawer + scrim ---------- */
.scrim {
    position: fixed; inset: 0; z-index: 60;
    background: rgba(0, 15, 18, .55);
    opacity: 0; visibility: hidden;
    transition: opacity .3s, visibility .3s;
}
.scrim.is-open { opacity: 1; visibility: visible; }

.drawer {
    position: fixed;
    z-index: 70;
    top: 0; bottom: 0; left: 0;
    width: min(84vw, 320px);
    padding: calc(var(--topbar-h) + .5rem) .8rem 1rem;
    border-top: 0; border-bottom: 0; border-left: 0;
    border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
    transform: translateX(-102%);
    transition: transform .35s var(--ease);
    display: flex; flex-direction: column;
}
.drawer.is-open { transform: none; }
.drawer__title {
    font-size: .74rem; text-transform: uppercase; letter-spacing: .16em;
    color: var(--faint); font-weight: 700; padding: .2rem .8rem .6rem;
}

/* ---------- Nav items (shared) ---------- */
.navitem {
    display: flex; align-items: center; gap: .85rem;
    padding: .8rem .9rem;
    border-radius: 12px;
    color: var(--muted);
    font-weight: 500; font-size: .98rem;
    transition: background .2s, color .2s, transform .15s var(--ease);
}
.navitem:hover { background: var(--glass-bg-2); color: var(--ink); }
.navitem.is-active {
    color: var(--cream);
    background: linear-gradient(120deg, rgba(198, 165, 90, .26), rgba(31, 122, 134, .26));
    border: 1px solid var(--glass-brd-2);
}
.navitem.is-active .navitem__icon { color: var(--accent); }
.navitem__icon { display: inline-grid; place-items: center; }
.navitem__icon svg { width: 22px; height: 22px; }

/* ---------- Bottom nav (mobile) ---------- */
.bottomnav {
    position: fixed;
    inset: auto .6rem calc(env(safe-area-inset-bottom, 0px) + .6rem) .6rem;
    z-index: 50;
    height: var(--bottomnav-h);
    display: none;
    align-items: stretch;
    justify-content: space-around;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    padding: .3rem;
}
.bottomnav .navitem {
    flex: 1;
    flex-direction: column;
    gap: .15rem;
    justify-content: center;
    padding: .35rem 0;
    border-radius: 14px;
    font-size: .68rem;
    font-weight: 600;
}
.bottomnav .navitem.is-active { border: 0; }
.bottomnav .navitem__icon svg { width: 24px; height: 24px; }
.bottomnav .navitem > span:last-child { max-width: 100%; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

/* ---------- Layout content ---------- */
.content {
    width: min(var(--container), 100% - 1.6rem);
    margin-inline: auto;
    padding-top: calc(var(--topbar-h) + 1rem);
    padding-bottom: 3rem;
    min-height: 100vh;
}

/* ---------- Page heading ---------- */
.page-head { margin: .4rem 0 1.4rem; }
.page-head h1 { font-size: clamp(1.7rem, 6vw, 2.2rem); font-weight: 800; }
.page-head p { margin: .35rem 0 0; color: var(--muted); font-size: .98rem; }
.hi-name { background: linear-gradient(120deg, var(--accent), var(--accent-3)); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* ---------- Cards ---------- */
.card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-brd);
    -webkit-backdrop-filter: blur(var(--blur));
    backdrop-filter: blur(var(--blur));
    border-radius: var(--radius-lg);
    padding: 1.15rem 1.2rem;
    box-shadow: var(--shadow-sm);
    transition: transform .25s var(--ease), border-color .25s, box-shadow .25s;
}
.card + .card { margin-top: .9rem; }
.card:hover { border-color: var(--glass-brd-2); }

/* Hero "next shift" */
.next {
    position: relative;
    overflow: hidden;
    margin-bottom: 1.1rem;
    border-radius: var(--radius-lg);
    padding: 1.4rem 1.3rem;
    background:
        linear-gradient(135deg, rgba(198, 165, 90, .20), rgba(31, 122, 134, .18)),
        var(--glass-bg);
    border: 1px solid var(--glass-brd-2);
    -webkit-backdrop-filter: blur(var(--blur));
    backdrop-filter: blur(var(--blur));
    box-shadow: var(--shadow);
}
.next::after {
    content: ""; position: absolute; top: -50%; right: -20%;
    width: 240px; height: 240px; border-radius: 50%;
    background: radial-gradient(circle, rgba(209, 235, 24, .28), transparent 60%);
    pointer-events: none;
}
.eyebrow {
    text-transform: uppercase; letter-spacing: .16em;
    font-size: .72rem; font-weight: 700; color: var(--accent);
}
.next h2 { font-size: 1.5rem; font-weight: 800; margin-top: .35rem; position: relative; }
.next__event { color: var(--muted); margin-top: .1rem; position: relative; }

/* ---------- Chips / meta line ---------- */
.chipline { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: .9rem; position: relative; }
.chip {
    display: inline-flex; align-items: center; gap: .35rem;
    padding: .35rem .7rem;
    border-radius: var(--radius-pill);
    background: var(--glass-bg-2);
    border: 1px solid var(--glass-brd);
    font-size: .82rem; font-weight: 500;
    color: var(--ink);
}
.chip svg { width: 15px; height: 15px; opacity: .8; }

/* ---------- Status pill ---------- */
.pill {
    display: inline-flex; align-items: center; gap: .4rem;
    padding: .3rem .7rem;
    border-radius: var(--radius-pill);
    font-size: .74rem; font-weight: 700;
    letter-spacing: .02em;
    border: 1px solid transparent;
    white-space: nowrap;
}
.pill::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: currentColor; }
.pill--info    { color: #79cdd9; background: rgba(31, 122, 134, .20); border-color: rgba(31, 122, 134, .40); }
.pill--primary { color: #e0c483; background: rgba(198, 165, 90, .18); border-color: rgba(198, 165, 90, .38); }
.pill--warn    { color: #e6cf4a; background: rgba(218, 195, 45, .16); border-color: rgba(218, 195, 45, .34); }
.pill--accent  { color: #d1eb18; background: rgba(209, 235, 24, .14); border-color: rgba(209, 235, 24, .34); }
.pill--success { color: #9fd85a; background: rgba(90, 159, 0, .20); border-color: rgba(90, 159, 0, .40); }
.pill--danger  { color: #ef8a74; background: rgba(210, 79, 55, .18); border-color: rgba(210, 79, 55, .38); }
.pill--muted   { color: var(--muted); background: var(--glass-bg-2); border-color: var(--glass-brd); }

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: .4rem;
    padding: .6rem 1.05rem;
    border-radius: var(--radius-pill);
    font-weight: 600; font-size: .88rem;
    border: 1px solid var(--glass-brd);
    background: var(--glass-bg-2);
    color: var(--ink);
    cursor: pointer;
    transition: transform .15s var(--ease), box-shadow .2s, filter .2s, background .2s;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0) scale(.98); }
.btn svg { width: 17px; height: 17px; }
.btn--primary { background: linear-gradient(120deg, var(--accent), var(--accent-2)); border-color: transparent; color: var(--bg-1); box-shadow: var(--glow); }
.btn--primary:hover { filter: brightness(1.06); }
.btn--success { background: linear-gradient(120deg, #5a9f00, #7bbf1f); border-color: transparent; color: #06210a; }
.btn--warn { background: linear-gradient(120deg, #dac32d, #efd94e); border-color: transparent; color: #322b00; }
.btn--ghost-danger { color: #ef8a74; border-color: rgba(210, 79, 55, .40); background: transparent; }
.btn--ghost-danger:hover { background: rgba(210, 79, 55, .14); }
.btn--sm { padding: .45rem .8rem; font-size: .8rem; }
.btn--block { width: 100%; }

.actions { display: flex; flex-wrap: wrap; gap: .55rem; margin-top: 1rem; }

/* ---------- Forms ---------- */
.section-title { font-family: var(--display); font-weight: 800; font-size: 1.05rem; margin-bottom: .3rem; }
.field { display: block; margin-top: .75rem; }
.field > span { display: block; font-size: .76rem; color: var(--muted); margin-bottom: .3rem; letter-spacing: .04em; }
.input, .select {
    width: 100%; padding: .65rem .8rem; border-radius: 12px;
    border: 1px solid var(--glass-brd); background: var(--glass-bg-2); color: var(--ink);
    font-size: .95rem; outline: none; transition: border-color .2s;
}
.input:focus, .select:focus { border-color: var(--glass-brd-2); }
.select option { background: #10202a; color: var(--ink); }
.check { display: flex; align-items: center; gap: .6rem; margin-top: .9rem; cursor: pointer; }
.check input { width: 20px; height: 20px; accent-color: var(--accent); }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 0 .9rem; }
@media (max-width: 460px) { .two-col { grid-template-columns: 1fr; } }
.ro-line { display: flex; justify-content: space-between; gap: 1rem; padding: .4rem 0; border-bottom: 1px solid var(--glass-brd); font-size: .92rem; }
.ro-line:last-child { border-bottom: 0; }
.ro-line > span { color: var(--muted); }
.save-bar { position: sticky; bottom: .6rem; margin-top: 1rem; }

/* ---------- Segment-Umschalter (Liste/Kalender) ---------- */
.seg { display: inline-flex; background: var(--glass-bg-2); border: 1px solid var(--glass-brd); border-radius: 999px; padding: 3px; margin-bottom: 1rem; }
.seg button { border: 0; background: transparent; color: var(--muted); padding: .45rem 1.1rem; border-radius: 999px; font-weight: 600; font-size: .85rem; cursor: pointer; transition: color .2s; }
.seg button.is-active { background: linear-gradient(120deg, var(--accent), var(--accent-2)); color: var(--bg-1); }

/* ---------- Kalender ---------- */
/* Fortlaufendes Wochenraster mit Monats-Gutter (links, rotiert) */
.cal-grid { display: grid; grid-template-columns: 2rem repeat(7, 1fr); gap: 6px; }
.cal-weekday { text-align: center; font-size: .68rem; color: var(--faint); align-self: center; }
.cal-gutter { position: relative; }
/* Absolut positioniert → beeinflusst die Zeilenhöhe NICHT; zentriert auf der 2. Woche,
   darf optisch über 2–3 Zeilen nach oben/unten überlappen. */
.cal-gutter__label {
    position: absolute; left: 50%; top: 50%; transform: translate(-50%, calc(-50% + 1.6rem));
    writing-mode: vertical-rl; white-space: nowrap; pointer-events: none;
    font-family: var(--display); font-weight: 800; font-size: 1.1rem;
    color: var(--accent); text-transform: uppercase; letter-spacing: .06em;
}

.cal-c-day { position: relative; min-height: 3rem; border-radius: 10px; background: var(--glass-bg);
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1px; padding: .2rem 0; font-size: .78rem; }
.cal-c-day[role="button"] { cursor: pointer; }
.cal-c-day.is-out { background: transparent; opacity: .2; }
.cal-c-day.is-today { background: var(--accent) !important; color: var(--bg-1) !important; font-weight: 800; }
.cal-c-day__num { font-weight: 600; color: inherit; }
.cal-c-cnt { font-size: .58rem; font-weight: 700; opacity: .8; }

/* Monatsklammern (gold): erste Woche oben, letzte Woche unten */
.cal-c-day.has-top { border-top: 2px solid var(--accent); }
.cal-c-day.corner-l { border-top-left-radius: 12px; border-left: 2px solid var(--accent); }
.cal-c-day.corner-r { border-top-right-radius: 12px; border-right: 2px solid var(--accent); }
.cal-c-day.has-bottom { border-bottom: 2px solid var(--accent); }
.cal-c-day.corner-bl { border-bottom-left-radius: 12px; border-left: 2px solid var(--accent); }
.cal-c-day.corner-br { border-bottom-right-radius: 12px; border-right: 2px solid var(--accent); }

/* Tagesfarbe nach höchstem Status (THES) */
.cal-c-day.day-fin  { background: #9aa0a6; color: #10202a; } /* Beendet – grau */
.cal-c-day.day-conf { background: #ffd54a; color: #3a2a00; } /* Zeiten/Einsatz bestätigen – gelb */
.cal-c-day.day-work { background: #1e7a3d; color: #ffffff; } /* Am Arbeiten – dunkelgrün */
.cal-c-day.day-acc  { background: #86d98f; color: #10202a; } /* Angenommen – hellgrün */
.cal-c-day.day-app  { background: #8fd0ef; color: #10202a; } /* Angefragt – hellblau */
.cal-c-day.day-open { background: #cfd3d8; color: #10202a; } /* Ausschreibung/Zurückgezogen – hellgrau */
.dot { width: 6px; height: 6px; border-radius: 50%; background: var(--faint); }
.dot--demand { background: var(--accent); }
.dot--info { background: #79cdd9; }
.dot--primary { background: #e0c483; }
.dot--warn { background: #e6cf4a; }
.dot--accent { background: #d1eb18; }
.dot--success { background: #9fd85a; }
.dot--danger { background: #ef8a74; }
.dot--muted { background: var(--faint); }
.cal-detail { margin: .3rem 0 1rem; }
.cal-detail__date { font-family: var(--display); font-weight: 800; text-transform: capitalize; margin-bottom: .4rem; }
.cal-entry { display: flex; align-items: center; gap: .6rem; padding: .55rem .75rem; }
.cal-entry .dot { width: 9px; height: 9px; }
.cal-entry__body { flex: 1; min-width: 0; }
.cal-entry__title { font-weight: 600; font-size: .92rem; }
.cal-entry__meta { font-size: .8rem; color: var(--muted); }

/* ---------- Agenda (Liste) ---------- */
.agenda-date { font-family: var(--display); font-weight: 800; text-transform: capitalize; margin: 1.1rem 0 .5rem; }

/* ---------- Avatar / Bild-Upload ---------- */
.avatar-edit { display: flex; align-items: center; gap: 1rem; margin-bottom: .4rem; }
.avatar-img { width: 72px; height: 72px; border-radius: 50%; object-fit: cover; border: 1px solid var(--glass-brd-2); }
.avatar-img--empty {
    display: grid; place-items: center; font-family: var(--display); font-weight: 800; font-size: 1.4rem;
    color: var(--bg-1); background: linear-gradient(135deg, var(--accent), var(--accent-2));
}

/* ---------- Shift card ---------- */
.shift__top { display: flex; align-items: center; justify-content: space-between; gap: .8rem; }
.shift__date { font-family: var(--display); font-weight: 800; font-size: 1.12rem; text-transform: capitalize; }
.shift__time { font-family: var(--font); font-weight: 500; font-size: .92rem; color: var(--muted); margin-left: .5rem; }
.shift__info { margin-top: .55rem; font-size: .98rem; line-height: 1.45; color: var(--ink); white-space: pre-line; }
.shift__title { font-family: var(--display); font-weight: 700; font-size: 1.12rem; }
.shift__event { color: var(--muted); font-size: .9rem; margin-top: .1rem; }

/* ---------- Stat tiles ---------- */
.stats { display: grid; grid-template-columns: 1fr 1fr; gap: .9rem; margin-top: 1.1rem; }
.stat { text-align: center; padding: 1.1rem .8rem; border-radius: var(--radius); }
.stat__num { font-family: var(--display); font-size: 2rem; font-weight: 800; line-height: 1; }
.stat__num--a { color: var(--accent-3); }
.stat__num--b { color: var(--accent); }
.stat__lbl { margin-top: .35rem; font-size: .78rem; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; }

/* ---------- History rows ---------- */
.hrow { display: flex; align-items: center; gap: .9rem; padding: .8rem .9rem; }
.hrow + .hrow { margin-top: .6rem; }
.daybadge {
    flex: 0 0 auto; display: grid; place-items: center;
    width: 52px; height: 52px; border-radius: 14px;
    background: var(--glass-bg-2); border: 1px solid var(--glass-brd);
}
.daybadge__d { font-family: var(--display); font-size: 1.25rem; font-weight: 800; line-height: 1; color: var(--accent); }
.daybadge__m { font-size: .66rem; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); }
.hrow__body { flex: 1; min-width: 0; }
.hrow__title { font-weight: 600; }
.hrow__meta { font-size: .82rem; color: var(--muted); }
.hrow__right { text-align: right; display: flex; flex-direction: column; align-items: flex-end; gap: .35rem; }
.hrow__hours { font-family: var(--display); font-weight: 700; font-size: .95rem; }

/* ---------- States ---------- */
.empty { text-align: center; color: var(--muted); padding: 3rem 1rem; }
.empty__icon { font-size: 2.4rem; opacity: .5; margin-bottom: .6rem; }

.alert {
    border-radius: var(--radius); padding: .9rem 1rem;
    border: 1px solid rgba(210, 79, 55, .40); background: rgba(210, 79, 55, .12);
    color: #f2a794; font-size: .92rem;
}

/* ---------- Spinner ---------- */
.spinner { display: grid; place-items: center; padding: 3rem 0; }
.spinner i {
    width: 38px; height: 38px; border-radius: 50%;
    border: 3px solid var(--glass-brd);
    border-top-color: var(--accent);
    animation: spin .8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- Avatar ---------- */
.avatar {
    display: inline-grid; place-items: center;
    width: 38px; height: 38px; border-radius: 50%;
    font-weight: 700; font-size: .85rem; color: var(--bg-1);
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    border: 1px solid var(--glass-brd-2);
    cursor: pointer;
}

/* ---------- Responsive: show bottom nav on small ---------- */
@media (max-width: 720px) {
    .bottomnav { display: flex; }
    .content { padding-bottom: calc(var(--bottomnav-h) + env(safe-area-inset-bottom, 0px) + 1.4rem); }
}
@media (min-width: 721px) {
    .stats { grid-template-columns: repeat(4, 1fr); }
}

@media (prefers-reduced-motion: reduce) {
    * { animation: none !important; transition: none !important; }
}

/* ---------- Blazor error UI ---------- */
#blazor-error-ui {
    background: #2a120c; color: #f2a794; bottom: 0; left: 0; width: 100%;
    display: none; padding: .8rem 1.4rem; position: fixed; z-index: 1000;
    box-shadow: 0 -1px 12px rgba(0, 0, 0, .5);
}
#blazor-error-ui .dismiss { cursor: pointer; position: absolute; right: 1rem; top: .6rem; }
.blazor-error-boundary { background: #b32121; color: #fff; padding: 1rem; }

/* ---------- Loading splash ---------- */
.loading-progress {
    position: relative; display: block; width: 8rem; height: 8rem; margin: 30vh auto 1rem;
}
.loading-progress circle {
    fill: none; stroke: rgba(249, 240, 223, .14); stroke-width: .5rem;
    transform-origin: 50% 50%; transform: rotate(-90deg);
}
.loading-progress circle:last-child {
    stroke: #c6a55a;
    stroke-dasharray: calc(3.141 * var(--blazor-load-percentage, 0%) * 0.8), 500%;
    transition: stroke-dasharray .05s ease-in-out;
}
.loading-progress-text {
    position: absolute; text-align: center; font-family: "Figtree", sans-serif; font-weight: 700;
    color: #f9f0df; inset: calc(30vh + 3.25rem) 0 auto .2rem;
}
.loading-progress-text::after { content: var(--blazor-load-percentage-text, "Lädt…"); }
