/* /Components/Layout/MainLayout.razor.rz.scp.css */
/* Off-screen until focused, then pinned over the app bar. Kept in the layout flow (not
   display:none) so assistive tech and the tab order can still reach it. */
.skip-link[b-jwfpy77pci] {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2000;
    padding: 0.75rem 1.25rem;
    border-radius: 0 0 var(--mud-default-borderradius) 0;
    background-color: var(--mud-palette-surface);
    color: var(--mud-palette-text-primary);
    font-size: 0.9375rem;
    font-weight: 600;
    text-decoration: none;
    box-shadow: var(--mud-elevation-8);
    transform: translateY(-120%);
}

.skip-link:focus-visible[b-jwfpy77pci],
.skip-link:focus[b-jwfpy77pci] {
    transform: translateY(0);
    outline: 2px solid var(--mud-palette-primary);
    outline-offset: -4px;
}

@media (prefers-reduced-motion: no-preference) {
    .skip-link[b-jwfpy77pci] {
        transition: transform 120ms ease-out;
    }
}

#blazor-error-ui[b-jwfpy77pci] {
    color-scheme: light only;
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss[b-jwfpy77pci] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }

/* Sign in / Sign out. A bare anchor rather than a MudButton, because these leave the
   Blazor app and must not be routed through JS interop -- see MainLayout.razor. Styled
   to match the text buttons beside it in the app bar. */
.appbar-auth-link[b-jwfpy77pci] {
    color: inherit;
    text-decoration: none;
    font-family: inherit;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.02857em;
    text-transform: uppercase;
    padding: 6px 8px;
    border-radius: var(--mud-default-borderradius);
}

    .appbar-auth-link:hover[b-jwfpy77pci] {
        background-color: rgba(255, 255, 255, 0.12);
    }

    .appbar-auth-link:focus-visible[b-jwfpy77pci] {
        outline: 2px solid currentColor;
        outline-offset: 2px;
    }
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-znndoyz3k5],
.components-reconnect-repeated-attempt-visible[b-znndoyz3k5],
.components-reconnect-failed-visible[b-znndoyz3k5],
.components-pause-visible[b-znndoyz3k5],
.components-resume-failed-visible[b-znndoyz3k5],
.components-rejoining-animation[b-znndoyz3k5] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-znndoyz3k5],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-znndoyz3k5],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-znndoyz3k5],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-znndoyz3k5],
#components-reconnect-modal.components-reconnect-retrying[b-znndoyz3k5],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-znndoyz3k5],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-znndoyz3k5],
#components-reconnect-modal.components-reconnect-failed[b-znndoyz3k5],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-znndoyz3k5] {
    display: block;
}


#components-reconnect-modal[b-znndoyz3k5] {
    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-znndoyz3k5 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-znndoyz3k5 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-znndoyz3k5 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-znndoyz3k5]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-znndoyz3k5 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-znndoyz3k5 {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-znndoyz3k5 {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-znndoyz3k5 {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-znndoyz3k5] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-znndoyz3k5] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-znndoyz3k5] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-znndoyz3k5] {
        background-color: #3b6ea2;
    }

    #components-reconnect-modal button:active[b-znndoyz3k5] {
        background-color: #6b9ed2;
    }

.components-rejoining-animation[b-znndoyz3k5] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-znndoyz3k5] {
        position: absolute;
        border: 3px solid #0087ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-znndoyz3k5 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-znndoyz3k5] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-znndoyz3k5 {
    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/Account/Landing.razor.rz.scp.css */
.landing-page[b-ndt9q1q8sa] {
    min-height: 100vh;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    background:
        radial-gradient(ellipse 80% 60% at 20% 20%, rgba(56, 189, 248, 0.22), transparent 55%),
        radial-gradient(ellipse 70% 50% at 85% 75%, rgba(13, 148, 136, 0.16), transparent 50%),
        linear-gradient(155deg, #071526 0%, #0f2d55 45%, #1d4ed8 100%);
    color: #ffffff;
}

/* Width and height are on the element as well, so the box is reserved before the SVG
   arrives and the title does not jump down the page once it does. */
.landing-logo[b-ndt9q1q8sa] {
    width: clamp(7rem, 20vw, 11rem);
    height: auto;
    margin: 0 0 1.5rem;
}

.landing-title[b-ndt9q1q8sa] {
    margin: 0 0 2.5rem;
    font-size: clamp(2.75rem, 7vw, 4.5rem);
    font-weight: 650;
    letter-spacing: -0.03em;
    line-height: 1.05;
    color: #ffffff;
}

.landing-signin[b-ndt9q1q8sa] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 11rem;
    min-height: 3rem;
    padding: 0.85rem 2rem;
    border-radius: 0.5rem;
    background: #ffffff;
    color: #071526;
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}

.landing-signin:hover[b-ndt9q1q8sa],
.landing-signin:focus-visible[b-ndt9q1q8sa] {
    background: #ffffff;
    color: #071526;
    outline: 3px solid rgba(255, 255, 255, 0.65);
    outline-offset: 3px;
}

.landing-progress[b-ndt9q1q8sa] {
    width: min(16rem, 70vw);
}
/* /Components/RedirectToLogin.razor.rz.scp.css */
.redirect-fallback[b-kcjf8hahxk] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 2rem;
}
/* /Components/Shared/StatCard.razor.rz.scp.css */
.stat-card[b-hvqqhv1brc] {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    height: 100%;
    padding: 1rem;
    box-sizing: border-box;
    border: 1px solid var(--mud-palette-lines-default);
    border-radius: var(--mud-default-borderradius);
    background-color: var(--mud-palette-surface);
    /* Faint accent wash, strongest at the top-left corner, as in the mockups. */
    background-image: linear-gradient(135deg, rgba(var(--stat-accent-rgb), 0.10), transparent 60%);
}

.stat-card-head[b-hvqqhv1brc] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    min-width: 0;
}

.stat-card-badge[b-hvqqhv1brc] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: none;
    width: 1.75rem;
    height: 1.75rem;
    border-radius: calc(var(--mud-default-borderradius) * 0.75);
    background-color: rgba(var(--stat-accent-rgb), 0.16);
    color: var(--stat-accent);
}

.stat-card-badge[b-hvqqhv1brc]  .mud-icon-root {
    color: inherit;
}

.stat-card-label[b-hvqqhv1brc] {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 0.8125rem;
    font-weight: 500;
    line-height: 1.2;
    color: var(--mud-palette-text-secondary);
}

.stat-card-value[b-hvqqhv1brc] {
    font-size: 1.75rem;
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--mud-palette-text-primary);
}

.stat-card-caption[b-hvqqhv1brc] {
    font-size: 0.75rem;
    line-height: 1.3;
    color: var(--mud-palette-text-secondary);
}

.stat-card-link[b-hvqqhv1brc] {
    text-decoration: none;
    color: inherit;
    transition: border-color 150ms ease, box-shadow 150ms ease, transform 150ms ease;
}

.stat-card-link:hover[b-hvqqhv1brc],
.stat-card-link:focus-visible[b-hvqqhv1brc] {
    border-color: rgba(var(--stat-accent-rgb), 0.55);
    box-shadow: 0 6px 18px rgba(var(--stat-accent-rgb), 0.18);
    transform: translateY(-2px);
}

.stat-card-link:focus-visible[b-hvqqhv1brc] {
    outline: 2px solid var(--stat-accent);
    outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
    .stat-card-link[b-hvqqhv1brc] {
        transition: none;
    }

    .stat-card-link:hover[b-hvqqhv1brc],
    .stat-card-link:focus-visible[b-hvqqhv1brc] {
        transform: none;
    }
}
/* /Components/Shared/StatusChip.razor.rz.scp.css */
.status-chip[b-cjoymvfi2z] {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    box-sizing: border-box;
    padding: 0.0625rem 0.5rem;
    border-radius: 999px;
    font-size: 0.8125rem;
    font-weight: 500;
    line-height: 1.6;
    white-space: nowrap;
    /* Full-contrast text on a faint wash: the tint is decoration, never the message. */
    color: var(--mud-palette-text-primary);
    background-color: rgba(var(--status-accent-rgb), 0.12);
}

.status-chip-dot[b-cjoymvfi2z] {
    flex: none;
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background-color: var(--status-accent);
}

/* The neutral (Cancelled) chip cannot use --mud-palette-dark: that is a dark grey, so
   on Midnight's dark surface both the tint and the dot disappear. Keying off the text
   colour instead keeps it visible on any surface, light or dark. */
.status-chip-neutral[b-cjoymvfi2z] {
    /* Fallback first: a mid grey reads acceptably on both light and dark surfaces for
       browsers without color-mix. */
    background-color: rgba(128, 128, 128, 0.16);
    background-color: color-mix(in srgb, currentColor 10%, transparent);
}

.status-chip-neutral .status-chip-dot[b-cjoymvfi2z] {
    background-color: currentColor;
    opacity: 0.55;
}

/* Colour is redundant with the label, but in forced-colours mode the tint and the dot
   are dropped entirely, so give the pill a real border to keep its shape. */
@media (forced-colors: active) {
    .status-chip[b-cjoymvfi2z] {
        border: 1px solid currentColor;
    }

    .status-chip-dot[b-cjoymvfi2z] {
        display: none;
    }
}
