/* /Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-3yjw0xk4nl] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-3yjw0xk4nl] {
    flex: 1;
}

.sidebar[b-3yjw0xk4nl] {
    background: var(--m3-sys-surface, #fef7ff);
    border-right: none;
}

article.content.m3-content-card[b-3yjw0xk4nl] {
    padding-top: var(--m3-layout-gutter, 10px);
}

article.content.m3-content-card:has(.m3-home-login)[b-3yjw0xk4nl] {
    background: transparent;
    border-radius: 0;
    padding: 0;
}

@media (min-width: 641px) {
    .page[b-3yjw0xk4nl] {
        flex-direction: row;
    }

    .sidebar[b-3yjw0xk4nl] {
        width: var(--m3-nav-rail-width-expanded, 220px);
        min-width: var(--m3-nav-rail-width-expanded, 220px);
        max-width: 360px;
        height: 100vh;
        position: sticky;
        top: 0;
        align-self: flex-start;
        transition: width 0.2s ease, min-width 0.2s ease;
    }

    .sidebar--collapsed[b-3yjw0xk4nl] {
        width: var(--m3-nav-rail-width-collapsed, 80px);
        min-width: var(--m3-nav-rail-width-collapsed, 80px);
    }
}

@media (max-width: 640.98px) {
    .sidebar--collapsed[b-3yjw0xk4nl] {
        width: auto;
        min-width: 0;
    }
}

#blazor-error-ui[b-3yjw0xk4nl] {
    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-3yjw0xk4nl] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* /Components/Layout/NavMenu.razor.rz.scp.css */
/* Styles live in M3NavigationRail.razor.css and wwwroot/m3-navigation-rail.css */
/* /Components/M3DialogHost.razor.rz.scp.css */
.m3-dialog-host[b-arx5cvaomr] {
    align-items: center;
    display: flex;
    inset: 0;
    justify-content: center;
    padding: 24px;
    position: fixed;
    z-index: 1500;
}

.m3-dialog-host__backdrop[b-arx5cvaomr] {
    animation: m3-dialog-host-backdrop-in-b-arx5cvaomr 180ms ease;
    background: rgba(29, 27, 32, 0.38);
    inset: 0;
    opacity: 1;
    position: absolute;
    transition: opacity 180ms ease;
}

.m3-dialog-host__backdrop--closing[b-arx5cvaomr] {
    opacity: 0;
}

.m3-dialog-host__dialog[b-arx5cvaomr] {
    align-items: center;
    background: var(--m3-content-bg);
    border-radius: 25px;
    box-shadow: 0 24px 48px rgba(29, 27, 32, 0.18);
    display: flex;
    gap: 16px;
    max-width: min(320px, calc(100vw - 48px));
    opacity: 1;
    padding: 16px 32px;
    position: relative;
    transform: translateY(0) scale(1);
    animation: m3-dialog-host-dialog-in-b-arx5cvaomr 180ms ease;
    transition:
        opacity 180ms ease,
        transform 180ms ease;
    width: min(320px, calc(100vw - 48px));
}

.m3-dialog-host__dialog--closing[b-arx5cvaomr] {
    opacity: 0;
    transform: translateY(12px) scale(0.96);
}

.m3-dialog-host__dialog:focus[b-arx5cvaomr] {
    outline: none;
}

.m3-dialog-host__icon[b-arx5cvaomr] {
    align-items: center;
    color: var(--m3-sys-on-surface-variant);
    display: flex;
    flex: 0 0 50px;
    font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 56px;
    font-weight: 400;
    height: 50px;
    justify-content: center;
    line-height: 1;
    width: 50px;
}

.m3-dialog-host__icon-mark[b-arx5cvaomr] {
    display: block;
    transform: translateY(-2px);
}

.m3-dialog-host__content[b-arx5cvaomr] {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    gap: 16px;
    min-width: 0;
}

.m3-dialog-host__message[b-arx5cvaomr] {
    color: var(--m3-sys-on-surface);
    font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.5px;
    line-height: 24px;
    margin: 0;
    text-align: center;
}

.m3-dialog-host__actions[b-arx5cvaomr] {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end;
    width: 100%;
}

@keyframes m3-dialog-host-backdrop-in-b-arx5cvaomr {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes m3-dialog-host-dialog-in-b-arx5cvaomr {
    from {
        opacity: 0;
        transform: translateY(12px) scale(0.96);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@media (max-width: 480px) {
    .m3-dialog-host[b-arx5cvaomr] {
        padding: 16px;
    }

    .m3-dialog-host__dialog[b-arx5cvaomr] {
        border-radius: 24px;
        padding: 16px 20px;
        width: min(320px, calc(100vw - 32px));
    }
}
/* /Components/M3FilledButton.razor.rz.scp.css */
.m3-filled-button[b-b9zmuntpdt] {
    align-items: center;
    appearance: none;
    background: transparent;
    border: none;
    color: inherit;
    cursor: pointer;
    display: inline-flex;
    font: inherit;
    justify-content: flex-start;
    min-height: 48px;
    min-width: 0;
    padding: 0;
    text-decoration: none;
    width: auto;
}

.m3-filled-button:focus[b-b9zmuntpdt] {
    outline: none;
}

.m3-filled-button__content[b-b9zmuntpdt] {
    align-items: center;
    background: #6750a4;
    border-radius: 12px;
    display: inline-flex;
    justify-content: center;
    overflow: hidden;
}

.m3-filled-button__state-layer[b-b9zmuntpdt] {
    align-items: center;
    display: inline-flex;
    gap: 8px;
    justify-content: center;
    padding: 10px 16px;
}

.m3-filled-button__label[b-b9zmuntpdt] {
    color: #fff;
    font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.1px;
    line-height: 20px;
    white-space: nowrap;
}

.m3-filled-button:focus-visible[b-b9zmuntpdt] {
    outline: 2px solid #6750a4;
    outline-offset: 2px;
}

.m3-filled-button:disabled .m3-filled-button__content[b-b9zmuntpdt],
.m3-filled-button[disabled] .m3-filled-button__content[b-b9zmuntpdt] {
    opacity: 0.38;
}

.m3-filled-button--waiting:disabled .m3-filled-button__content[b-b9zmuntpdt],
.m3-filled-button--waiting[disabled] .m3-filled-button__content[b-b9zmuntpdt] {
    opacity: 1;
}

.m3-filled-button:disabled[b-b9zmuntpdt],
.m3-filled-button[disabled][b-b9zmuntpdt] {
    cursor: not-allowed;
    pointer-events: none;
}

.m3-filled-button:not(:disabled):not([disabled]) .m3-filled-button__content:hover[b-b9zmuntpdt] {
    filter: brightness(1.05);
}
/* /Components/M3InfoCell.razor.rz.scp.css */
.m3-info-cell[b-nba8pxrn9o] {
    align-items: flex-start;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 0;
    overflow-wrap: anywhere;
    padding: 0 10px;
    width: 100%;
}

.m3-info-cell__label[b-nba8pxrn9o] {
    color: var(--m3-sys-secondary, #625b71);
    font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.5px;
    line-height: 16px;
    margin: 0;
    width: 100%;
}

.m3-info-cell__value[b-nba8pxrn9o] {
    color: var(--m3-sys-on-surface, #1d1b20);
    font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.5px;
    line-height: 24px;
    margin: 0;
    white-space: pre-wrap;
    width: 100%;
}

/* —— Switch variant (Figma node 84:1521) —— */
.m3-info-cell__switch[b-nba8pxrn9o] {
    position: relative;
    width: 52px;
    height: 32px;
    flex: 0 0 auto;
}

.m3-info-cell__switch-input[b-nba8pxrn9o] {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    opacity: 0;
    cursor: pointer;
}

.m3-info-cell__switch-track[b-nba8pxrn9o] {
    position: absolute;
    inset: 0;
    border-radius: 100px;
    background: rgba(29, 27, 32, 0.1); /* on-surface @ 10% (state layer) */
    transition: background 160ms ease, opacity 160ms ease;
}

.m3-info-cell__switch-thumb[b-nba8pxrn9o] {
    position: absolute;
    top: 50%;
    left: 28px; /* default matches Figma screenshot (selected true) */
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    border-radius: 999px;
    background: var(--m3-sys-surface, #fef7ff);
    transition: left 160ms ease;
}

/* Optional off state support for when it's used interactively */
.m3-info-cell__switch-input:not(:checked) + .m3-info-cell__switch-track .m3-info-cell__switch-thumb[b-nba8pxrn9o] {
    left: 8px;
}

.m3-info-cell__switch-input:disabled[b-nba8pxrn9o] {
    cursor: not-allowed;
}

.m3-info-cell__switch-input:disabled + .m3-info-cell__switch-track[b-nba8pxrn9o] {
    opacity: 0.8;
}

.m3-info-cell__switch-input:focus-visible + .m3-info-cell__switch-track[b-nba8pxrn9o] {
    box-shadow: 0 0 0 2px color-mix(in srgb, var(--m3-sys-primary, #6750a4) 30%, transparent);
}
/* /Components/M3LoadingSection.razor.rz.scp.css */
.m3-loading-section[b-io1xvi57nt] {
    position: relative;
    width: 100%;
}

.m3-loading-section--loading[b-io1xvi57nt] {
    min-height: var(--m3-loading-section-min-height, 160px);
}

.m3-loading-section__content[b-io1xvi57nt] {
    width: 100%;
}

.m3-loading-section__overlay[b-io1xvi57nt] {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
    background: color-mix(in srgb, var(--m3-content-bg, #fffbfe) 60%, transparent);
}
/* /Components/M3NavigationRail.razor.rz.scp.css */
.m3-nav-rail[b-k7d5bhpu4x] {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: flex-start;
    padding: 15px 20px 20px;
    height: 100%;
    width: 100%;
    background: var(--m3-sys-surface, #fef7ff);
    box-sizing: border-box;
    transition: padding 0.2s ease;
}

.m3-nav-rail--collapsed[b-k7d5bhpu4x] {
    align-items: center;
    gap: 12px;
    padding: 15px 12px 20px;
}

.m3-nav-rail--collapsed .m3-nav-rail__menu-fab[b-k7d5bhpu4x] {
    min-height: auto;
    width: auto;
}

.m3-nav-rail--collapsed .m3-nav-rail__segments[b-k7d5bhpu4x] {
    align-items: center;
    width: auto;
}

.m3-nav-rail--collapsed[b-k7d5bhpu4x]  .m3-nav-rail-item {
    width: auto;
}

.m3-nav-rail--collapsed[b-k7d5bhpu4x]  .m3-nav-rail-item__label {
    display: none;
}

.m3-nav-rail--collapsed[b-k7d5bhpu4x]  .m3-nav-rail-item__state-layer {
    justify-content: center;
    width: 56px;
    min-width: 56px;
    padding: 16px;
}

.m3-nav-rail--collapsed .m3-nav-rail-form[b-k7d5bhpu4x] {
    width: auto;
}

.m3-nav-rail__menu-fab[b-k7d5bhpu4x] {
    width: 100%;
    min-height: 116px;
}

.m3-nav-rail__menu-button[b-k7d5bhpu4x] {
    width: 56px;
    height: 56px;
    border: 0;
    border-radius: 16px;
    background: transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--m3-sys-on-surface-variant, #49454f);
    padding: 0;
}

.m3-nav-rail__menu-button:hover[b-k7d5bhpu4x] {
    background: var(--m3-nav-rail-menu-hover, #ece6f0);
}

.m3-nav-rail__menu-button:focus-visible[b-k7d5bhpu4x] {
    outline: 2px solid var(--m3-sys-primary, #6750a4);
    outline-offset: 2px;
}

.m3-nav-rail__segments[b-k7d5bhpu4x] {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 0;
}

.m3-nav-rail-form[b-k7d5bhpu4x] {
    width: 100%;
    margin: 0;
}

@media (max-width: 640.98px) {
    .m3-nav-rail[b-k7d5bhpu4x] {
        gap: 16px;
        padding: 12px;
    }

    .m3-nav-rail__menu-fab[b-k7d5bhpu4x] {
        min-height: auto;
    }

    .m3-nav-rail__segments[b-k7d5bhpu4x] {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 4px;
    }

    .m3-nav-rail--collapsed[b-k7d5bhpu4x]  .m3-nav-rail-item__label {
        display: inline;
    }

    .m3-nav-rail--collapsed[b-k7d5bhpu4x]  .m3-nav-rail-item__state-layer {
        width: 100%;
        min-width: 0;
        justify-content: flex-start;
    }

    [b-k7d5bhpu4x] .m3-nav-rail-item {
        width: auto;
        min-height: var(--m3-nav-rail-item-height, 56px);
    }

    [b-k7d5bhpu4x] .m3-nav-rail-item__state-layer {
        min-height: var(--m3-nav-rail-item-height, 56px);
    }
}
/* /Components/M3NavRailItem.razor.rz.scp.css */
/* Building Blocks/Navigation rail/Horizontal nav item — M3 Design Kit (node 1:4860) */

.m3-nav-rail-item[b-lnsni3dk6u] {
    display: flex;
    align-items: stretch;
    width: 100%;
    min-height: var(--m3-nav-rail-item-height, 56px);
    border-radius: var(--m3-nav-rail-item-radius, 100px);
    text-decoration: none;
    color: var(--m3-sys-on-surface-variant, #49454f);
    overflow: hidden;
    border: 0;
    background: transparent;
    text-align: left;
    cursor: pointer;
    padding: 0;
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    box-sizing: border-box;
}

.m3-nav-rail-item__state-layer[b-lnsni3dk6u] {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    flex: 1;
    min-height: var(--m3-nav-rail-item-height, 56px);
    padding: 16px;
    width: 100%;
    box-sizing: border-box;
    border-radius: var(--m3-nav-rail-item-radius, 100px);
    background: transparent;
    transition: background-color 0.2s ease;
}

.m3-nav-rail-item__icon[b-lnsni3dk6u] {
    color: inherit;
    background-color: currentColor;
}

.m3-nav-rail-item__label[b-lnsni3dk6u] {
    font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    letter-spacing: 0.1px;
    white-space: nowrap;
    color: inherit;
}

/* Enabled — not selected: state layer on-surface @ 8% hover, 10% focus/pressed */
.m3-nav-rail-item:hover:not(.active) .m3-nav-rail-item__state-layer[b-lnsni3dk6u] {
    background: rgba(29, 27, 32, 0.08);
}

.m3-nav-rail-item:active:not(.active) .m3-nav-rail-item__state-layer[b-lnsni3dk6u],
.m3-nav-rail-item:focus-visible:not(.active) .m3-nav-rail-item__state-layer[b-lnsni3dk6u] {
    background: rgba(29, 27, 32, 0.1);
}

/* Selected — keep the pill on the rounded state layer */
.m3-nav-rail-item.active[b-lnsni3dk6u],
.m3-nav-rail-item.m3-nav-rail-item--active[b-lnsni3dk6u],
.m3-nav-rail-item[aria-current="page"][b-lnsni3dk6u] {
    background: transparent;
    color: var(--m3-sys-on-secondary-container, #4a4459);
}

.m3-nav-rail-item.active .m3-nav-rail-item__state-layer[b-lnsni3dk6u],
.m3-nav-rail-item.m3-nav-rail-item--active .m3-nav-rail-item__state-layer[b-lnsni3dk6u],
.m3-nav-rail-item[aria-current="page"] .m3-nav-rail-item__state-layer[b-lnsni3dk6u] {
    background: var(--m3-sys-secondary-container, #e8def8);
}

.m3-nav-rail-item.active .m3-nav-rail-item__icon[b-lnsni3dk6u],
.m3-nav-rail-item.m3-nav-rail-item--active .m3-nav-rail-item__icon[b-lnsni3dk6u],
.m3-nav-rail-item[aria-current="page"] .m3-nav-rail-item__icon[b-lnsni3dk6u] {
    background-color: var(--m3-sys-on-secondary-container, #4a4459);
}

.m3-nav-rail-item.active .m3-nav-rail-item__label[b-lnsni3dk6u],
.m3-nav-rail-item.m3-nav-rail-item--active .m3-nav-rail-item__label[b-lnsni3dk6u],
.m3-nav-rail-item[aria-current="page"] .m3-nav-rail-item__label[b-lnsni3dk6u] {
    color: var(--m3-sys-on-secondary-container, #4a4459);
}

.m3-nav-rail-item.active:hover[b-lnsni3dk6u],
.m3-nav-rail-item.m3-nav-rail-item--active:hover[b-lnsni3dk6u],
.m3-nav-rail-item[aria-current="page"]:hover[b-lnsni3dk6u] {
    color: var(--m3-sys-on-secondary-container, #4a4459);
}

.m3-nav-rail-item.active:hover .m3-nav-rail-item__state-layer[b-lnsni3dk6u],
.m3-nav-rail-item.m3-nav-rail-item--active:hover .m3-nav-rail-item__state-layer[b-lnsni3dk6u],
.m3-nav-rail-item[aria-current="page"]:hover .m3-nav-rail-item__state-layer[b-lnsni3dk6u] {
    background:
        linear-gradient(rgba(74, 68, 89, 0.08), rgba(74, 68, 89, 0.08)),
        var(--m3-sys-secondary-container, #e8def8);
}

.m3-nav-rail-item.active:active .m3-nav-rail-item__state-layer[b-lnsni3dk6u],
.m3-nav-rail-item.active:focus-visible .m3-nav-rail-item__state-layer[b-lnsni3dk6u],
.m3-nav-rail-item.m3-nav-rail-item--active:active .m3-nav-rail-item__state-layer[b-lnsni3dk6u],
.m3-nav-rail-item.m3-nav-rail-item--active:focus-visible .m3-nav-rail-item__state-layer[b-lnsni3dk6u],
.m3-nav-rail-item[aria-current="page"]:active .m3-nav-rail-item__state-layer[b-lnsni3dk6u],
.m3-nav-rail-item[aria-current="page"]:focus-visible .m3-nav-rail-item__state-layer[b-lnsni3dk6u] {
    background:
        linear-gradient(rgba(74, 68, 89, 0.1), rgba(74, 68, 89, 0.1)),
        var(--m3-sys-secondary-container, #e8def8);
}

.m3-nav-rail-item:focus-visible[b-lnsni3dk6u] {
    outline: 2px solid var(--m3-sys-primary, #6750a4);
    outline-offset: 2px;
}

.m3-nav-rail-item--button[b-lnsni3dk6u] {
    width: 100%;
}
/* /Components/M3OutlinedButton.razor.rz.scp.css */
.m3-outlined-button[b-clbj1l0vqe] {
    align-items: center;
    appearance: none;
    background: transparent;
    border: none;
    color: inherit;
    cursor: pointer;
    display: inline-flex;
    font: inherit;
    justify-content: flex-start;
    min-height: 48px;
    min-width: 0;
    padding: 0;
    text-decoration: none;
    width: auto;
}

.m3-outlined-button__content[b-clbj1l0vqe] {
    align-items: center;
    background: var(--m3-content-bg, #ffffff);
    border: 1px solid var(--m3-sys-outline-variant, #cac4d0);
    border-radius: 12px;
    box-sizing: border-box;
    display: inline-flex;
    justify-content: center;
    overflow: hidden;
}

.m3-outlined-button__state-layer[b-clbj1l0vqe] {
    align-items: center;
    display: inline-flex;
    gap: 8px;
    justify-content: center;
    padding: 9px 16px;
}

.m3-outlined-button__label[b-clbj1l0vqe] {
    font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.1px;
    line-height: 20px;
    white-space: nowrap;
}

.m3-outlined-button:focus[b-clbj1l0vqe] {
    outline: none;
}

.m3-outlined-button:focus-visible[b-clbj1l0vqe] {
    outline: 2px solid var(--m3-sys-primary, #6750a4);
    outline-offset: 2px;
}

.m3-outlined-button:not(:disabled):not([disabled]) .m3-outlined-button__content:hover[b-clbj1l0vqe] {
    background: color-mix(in srgb, var(--m3-sys-primary, #6750a4) 8%, var(--m3-content-bg, #ffffff));
}

.m3-outlined-button:disabled .m3-outlined-button__content[b-clbj1l0vqe],
.m3-outlined-button[disabled] .m3-outlined-button__content[b-clbj1l0vqe] {
    opacity: 0.38;
}

.m3-outlined-button--waiting:disabled .m3-outlined-button__content[b-clbj1l0vqe],
.m3-outlined-button--waiting[disabled] .m3-outlined-button__content[b-clbj1l0vqe] {
    opacity: 1;
}

.m3-outlined-button:disabled[b-clbj1l0vqe],
.m3-outlined-button[disabled][b-clbj1l0vqe] {
    cursor: not-allowed;
    pointer-events: none;
}
/* /Components/M3SectionHeader.razor.rz.scp.css */
.m3-section-header[b-i5pv2jd026] {
    border-bottom: 1px solid #d0bcff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5px 0;
    width: 100%;
}

.m3-section-header__inner[b-i5pv2jd026] {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: space-between;
    width: 100%;
}

.m3-section-header__title[b-i5pv2jd026] {
    color: var(--m3-sys-primary);
    font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.15px;
    line-height: 24px;
    margin: 0;
    white-space: nowrap;
}

.m3-section-header__trailing[b-i5pv2jd026] {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end;
}
/* /Components/M3SegmentedButton.razor.rz.scp.css */
.m3-segmented-button[b-jlfdfd1wqs] {
    display: flex;
    height: 48px;
    width: 100%;
}

.m3-segmented-button__segment[b-jlfdfd1wqs] {
    align-items: center;
    background: #ffffff;
    border: 1px solid var(--m3-sys-outline);
    color: var(--m3-sys-on-surface);
    cursor: pointer;
    display: inline-flex;
    flex: 1 1 0;
    font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 14px;
    font-weight: 500;
    gap: 8px;
    justify-content: center;
    letter-spacing: 0.1px;
    line-height: 20px;
    margin-right: -1px;
    min-height: 48px;
    min-width: 0;
    padding: 10px 12px;
}

.m3-segmented-button__segment--start[b-jlfdfd1wqs] {
    border-bottom-left-radius: 100px;
    border-top-left-radius: 100px;
}

.m3-segmented-button__segment--end[b-jlfdfd1wqs] {
    border-bottom-right-radius: 100px;
    border-top-right-radius: 100px;
    margin-right: 0;
}

.m3-segmented-button__segment--selected[b-jlfdfd1wqs] {
    background: var(--m3-sys-primary);
    border-color: var(--m3-sys-outline);
    color: var(--m3-sys-on-secondary);
}

.m3-segmented-button__segment:focus-visible[b-jlfdfd1wqs] {
    outline: 2px solid var(--m3-sys-primary);
    outline-offset: 2px;
    z-index: 2;
}

.m3-segmented-button__segment:disabled[b-jlfdfd1wqs] {
    cursor: not-allowed;
    opacity: 0.38;
}

.m3-segmented-button__check[b-jlfdfd1wqs] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4L9 16.2z' fill='%23FFFFFF'/%3E%3C/svg%3E");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 18px 18px;
    flex: 0 0 18px;
    height: 18px;
    width: 18px;
}

.m3-segmented-button__label[b-jlfdfd1wqs] {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
/* /Components/M3SnackbarHost.razor.rz.scp.css */
.m3-snackbar-host[b-qzd9c5mj94] {
    bottom: 24px;
    display: flex;
    inset-inline: 0;
    justify-content: center;
    padding: 0 16px;
    pointer-events: none;
    position: fixed;
    z-index: 1500;
}

.m3-snackbar[b-qzd9c5mj94] {
    align-items: center;
    animation: m3-snackbar-in-b-qzd9c5mj94 180ms ease;
    background: var(--m3-content-bg, #ffffff);
    border: 1px solid var(--m3-sys-primary, #6750a4);
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(29, 27, 32, 0.14);
    box-sizing: border-box;
    display: flex;
    gap: 10px;
    max-width: min(480px, calc(100vw - 32px));
    min-height: 40px;
    padding: 10px;
    pointer-events: auto;
    transition:
        opacity 180ms ease,
        transform 180ms ease;
}

.m3-snackbar--error[b-qzd9c5mj94] {
    border-color: var(--m3-sys-error, #b3261e);
}

.m3-snackbar--closing[b-qzd9c5mj94] {
    opacity: 0;
    transform: translateY(16px);
}

.m3-snackbar__message[b-qzd9c5mj94] {
    color: var(--m3-sys-on-surface, #000000);
    font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.25px;
    line-height: 20px;
    margin: 0;
    word-break: break-word;
}

.m3-snackbar__close[b-qzd9c5mj94] {
    align-items: center;
    appearance: none;
    background: transparent;
    border: none;
    border-radius: 999px;
    color: var(--m3-sys-on-surface, #000000);
    cursor: pointer;
    display: inline-flex;
    flex: 0 0 auto;
    height: 16px;
    justify-content: center;
    margin: 0;
    padding: 0;
    width: 16px;
}

.m3-snackbar__close:hover[b-qzd9c5mj94] {
    opacity: 0.72;
}

.m3-snackbar__close:focus-visible[b-qzd9c5mj94] {
    outline: 2px solid var(--m3-sys-primary, #6750a4);
    outline-offset: 4px;
}

.m3-snackbar__close-icon[b-qzd9c5mj94] {
    display: block;
    height: 16px;
    width: 12px;
}

.m3-snackbar__close-icon path[b-qzd9c5mj94] {
    fill: currentColor;
}

@keyframes m3-snackbar-in-b-qzd9c5mj94 {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 480px) {
    .m3-snackbar-host[b-qzd9c5mj94] {
        bottom: 16px;
        padding: 0 12px;
    }

    .m3-snackbar[b-qzd9c5mj94] {
        max-width: calc(100vw - 24px);
    }
}
/* /Components/M3SwitchWithLabel.razor.rz.scp.css */
.m3-switch-with-label[b-ht4s8jlpju] {
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: flex-start;
    width: 52px;
    position: relative;
}

.m3-switch-with-label__label[b-ht4s8jlpju] {
    margin: 0;
    padding: 0;
    font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 11px;
    font-weight: 500;
    line-height: 16px;
    letter-spacing: 0.5px;
    color: var(--m3-sys-on-surface-variant, #49454f);
    white-space: nowrap;
}

.m3-switch-with-label__control[b-ht4s8jlpju] {
    position: relative;
    width: 52px;
    height: 32px;
}

/* Visually hidden checkbox; track is fully clickable via label */
.m3-switch-with-label__input[b-ht4s8jlpju] {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    opacity: 0;
    cursor: pointer;
}

.m3-switch-with-label__track[b-ht4s8jlpju] {
    position: absolute;
    inset: 0;
    border-radius: 100px;
    background: #e6e0e9; /* M3 surface-container-highest */
    border: 2px solid var(--m3-sys-outline, #79747e);
    transition:
        background 160ms ease,
        border-color 160ms ease;
}

.m3-switch-with-label__thumb[b-ht4s8jlpju] {
    position: absolute;
    top: 50%;
    left: 8px;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    border-radius: 999px;
    background: var(--m3-sys-outline, #79747e);
    transition:
        left 160ms ease,
        background 160ms ease;
}

/* Checked state */
.m3-switch-with-label__input:checked + .m3-switch-with-label__track[b-ht4s8jlpju] {
    background: var(--m3-sys-primary, #6750a4);
    border-color: var(--m3-sys-primary, #6750a4);
}

.m3-switch-with-label__input:checked + .m3-switch-with-label__track .m3-switch-with-label__thumb[b-ht4s8jlpju] {
    left: 28px; /* 52 - 16 - 8 */
    background: var(--m3-sys-on-primary, #ffffff);
}

/* Disabled state */
.m3-switch-with-label__input:disabled[b-ht4s8jlpju] {
    cursor: not-allowed;
}

.m3-switch-with-label__input:disabled + .m3-switch-with-label__track[b-ht4s8jlpju] {
    opacity: 0.6;
}

/* Keyboard focus */
.m3-switch-with-label__input:focus-visible + .m3-switch-with-label__track[b-ht4s8jlpju] {
    box-shadow: 0 0 0 2px color-mix(in srgb, var(--m3-sys-primary, #6750a4) 30%, transparent);
}

/* /Components/M3TopAppBar.razor.rz.scp.css */
.m3-top-app-bar[b-quldk66dk6] {
    align-items: center;
    color: #1d1b20;
    display: flex;
    gap: 4px;
    min-height: 64px;
    padding: 8px 12px;
    width: 100%;
}

.m3-top-app-bar__leading[b-quldk66dk6],
.m3-top-app-bar__trailing[b-quldk66dk6] {
    align-items: center;
    display: flex;
    height: 48px;
    flex: 0 0 auto;
    justify-content: center;
    min-width: 48px;
}

.m3-top-app-bar__icon-button[b-quldk66dk6] {
    align-items: center;
    background: transparent;
    border: 0;
    border-radius: 9999px;
    cursor: pointer;
    display: inline-flex;
    height: 40px;
    justify-content: center;
    text-decoration: none;
    width: 40px;
}

.m3-top-app-bar__icon-button:hover[b-quldk66dk6] {
    background: #ece6f0;
}

.m3-top-app-bar__icon[b-quldk66dk6] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231D1B20' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M15 18l-6-6 6-6'/%3E%3C/svg%3E");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 24px 24px;
    display: inline-block;
    height: 24px;
    width: 24px;
}

.m3-top-app-bar__text[b-quldk66dk6] {
    align-items: center;
    display: flex;
    flex: 1 1 auto;
    min-width: 0;
}

.m3-top-app-bar__title[b-quldk66dk6] {
    color: #1d1b20;
    font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 22px;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 28px;
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 100%;
}
/* /Components/M3WaitingIndicator.razor.rz.scp.css */
.m3-waiting-indicator[b-w2b3sq0ohp] {
    box-sizing: border-box;
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 2px solid transparent;
    border-radius: 50%;
    animation: m3-waiting-indicator-spin-b-w2b3sq0ohp 0.8s linear infinite;
}

.m3-waiting-indicator--medium[b-w2b3sq0ohp] {
    width: 28px;
    height: 28px;
    border-width: 3px;
}

.m3-waiting-indicator--onprimary[b-w2b3sq0ohp] {
    border-top-color: var(--m3-sys-on-primary, #ffffff);
}

.m3-waiting-indicator--onsurface[b-w2b3sq0ohp] {
    border-top-color: var(--m3-sys-primary, #6750a4);
}

@keyframes m3-waiting-indicator-spin-b-w2b3sq0ohp {
    to {
        transform: rotate(360deg);
    }
}
/* /Components/Pages/Home.razor.rz.scp.css */
.m3-home-login[b-zrpc5tru0h] {
    display: flex;
    flex: 1;
    align-items: center;
    justify-content: center;
    min-height: 100%;
    width: 100%;
}

.m3-home-login__panel[b-zrpc5tru0h] {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    max-width: 400px;
    padding: 16px 32px;
    background: var(--m3-content-bg, #ffffff);
    border-radius: var(--m3-content-radius, 25px);
    overflow: clip;
    box-sizing: border-box;
}

.m3-home-login__title[b-zrpc5tru0h] {
    margin: 0;
    font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 28px;
    font-weight: 400;
    line-height: 36px;
    color: var(--m3-sys-on-surface, #1d1b20);
}

.m3-home-login__forgot[b-zrpc5tru0h] {
    font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0.25px;
    color: var(--m3-sys-on-surface, #1d1b20);
    text-decoration: none;
}

.m3-home-login__forgot:hover[b-zrpc5tru0h] {
    text-decoration: underline;
}
/* /Components/Pages/Register.razor.rz.scp.css */
.m3-home-login[b-gqgskg05s0] {
    display: flex;
    flex: 1;
    align-items: center;
    justify-content: center;
    min-height: 100%;
    width: 100%;
}

.m3-home-login__panel[b-gqgskg05s0] {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    max-width: 400px;
    padding: 16px 32px;
    background: var(--m3-content-bg, #ffffff);
    border-radius: var(--m3-content-radius, 25px);
    overflow: visible;
    box-sizing: border-box;
}

.m3-auth-field-group[b-gqgskg05s0] {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.m3-auth-field-group .m3-outlined-field[b-gqgskg05s0] {
    margin-bottom: 0;
}

.m3-auth-field-group .m3-field-error[b-gqgskg05s0] {
    display: block;
    margin: 0;
    font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0.4px;
    color: var(--m3-sys-error, #b3261e);
}

.m3-auth-field-group .m3-field-error:empty[b-gqgskg05s0] {
    display: none;
}

.m3-home-login__title[b-gqgskg05s0] {
    margin: 0;
    font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 28px;
    font-weight: 400;
    line-height: 36px;
    color: var(--m3-sys-on-surface, #1d1b20);
}
