@import '_content/Microsoft.FluentUI.AspNetCore.Components/Microsoft.FluentUI.AspNetCore.Components.lcdo7z9xd2.bundle.scp.css';

/* /Components/Layout/MainLayout.razor.rz.scp.css */
/* Local layout only — spacing and the scroll region owned by this component's own markup.
   Not a styling system: colours, typography and component looks come from Fluent's design
   tokens (blazor-ui.md §2.3, code-style.md §4).

   Only two selectors live here, and both target elements written in MainLayout.razor
   itself. CSS isolation stamps its scope attribute on THIS component's elements, never on
   the markup a child component renders — so the classes handed to <FluentStack> and
   <FluentBodyContent> (.pti-main, .pti-body) cannot be styled from this file and sit in
   wwwroot/app.css instead. */

.pti-content[b-wuy1gyuzue] {
    padding: calc(var(--design-unit) * 6px) calc(var(--design-unit) * 8px);
    max-width: 1400px;
}

/* Blazor's unhandled-error bar. The id and the two class names are the framework's —
   blazor.web.js toggles this element by id and expects .reload/.dismiss. */
#blazor-error-ui[b-wuy1gyuzue] {
    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-wuy1gyuzue] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }

@media (max-width: 700px) {
    .pti-content[b-wuy1gyuzue] {
        padding: calc(var(--design-unit) * 4px);
    }
}
/* /Components/Layout/NavMenu.razor.rz.scp.css */
/* The <nav> wrapper is the only element NavMenu.razor renders itself, so it is the only
   one CSS isolation can reach — FluentNavMenu styles itself from Fluent's design tokens
   and is deliberately left alone (blazor-ui.md §2.3). */

.pti-nav[b-3mm7lkwszq] {
    flex-shrink: 0;
    height: 100%;
    overflow-y: auto;
    border-inline-end: calc(var(--stroke-width) * 1px) solid var(--neutral-stroke-divider-rest);
    background-color: var(--neutral-layer-1);
}

/* Below the tablet breakpoint the menu stops being a column and becomes a strip above the
   content; FluentNavMenu's own Collapsible chevron does the rest. */
@media (max-width: 700px) {
    .pti-nav[b-3mm7lkwszq] {
        height: auto;
        width: 100%;
        border-inline-end: none;
        border-block-end: calc(var(--stroke-width) * 1px) solid var(--neutral-stroke-divider-rest);
    }
}
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-hyvn23squ3],
.components-reconnect-repeated-attempt-visible[b-hyvn23squ3],
.components-reconnect-failed-visible[b-hyvn23squ3],
.components-pause-visible[b-hyvn23squ3],
.components-resume-failed-visible[b-hyvn23squ3],
.components-rejoining-animation[b-hyvn23squ3] {
    display: none;
}

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


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

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

}

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

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

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

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

    100% {
        opacity: 1;
    }
}

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

    100% {
        opacity: 0;
    }
}

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

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

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

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

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

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

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

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

@keyframes components-rejoining-animation-b-hyvn23squ3 {
    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/Home.razor.rz.scp.css */
/* Two-column definition list for the session summary. Layout only — the card, the badges
   and the type ramp are Fluent's (blazor-ui.md §2.3). */

.pti-session[b-ft7bz0fyg6] {
    display: grid;
    grid-template-columns: max-content 1fr;
    column-gap: calc(var(--design-unit) * 6px);
    row-gap: calc(var(--design-unit) * 2px);
    margin: calc(var(--design-unit) * 3px) 0 0 0;
    align-items: baseline;
}

    .pti-session dt[b-ft7bz0fyg6] {
        font-weight: 600;
        color: var(--neutral-foreground-hint);
    }

    .pti-session dd[b-ft7bz0fyg6] {
        margin: 0;
        overflow-wrap: anywhere;
    }

@media (max-width: 700px) {
    .pti-session[b-ft7bz0fyg6] {
        grid-template-columns: 1fr;
        row-gap: calc(var(--design-unit) * 1px);
    }

        .pti-session dd[b-ft7bz0fyg6] {
            margin-block-end: calc(var(--design-unit) * 2px);
        }
}
