/* /Components/Account/Shared/AccountLayout.razor.rz.scp.css */
.account-shell[b-7xctd5ccp4] {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--admin-sidebar-bg, #222e3c);
    padding: 1.5rem;
}

.account-card[b-7xctd5ccp4] {
    background: #fff;
    border-radius: 0.75rem;
    box-shadow: 0 1rem 2.5rem rgba(0, 0, 0, 0.25);
    padding: 2.5rem;
    width: 100%;
    max-width: 26rem;
}

.account-brand[b-7xctd5ccp4] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #1a1f2b;
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.account-brand svg[b-7xctd5ccp4] {
    width: 1.75rem;
    height: 1.75rem;
    color: var(--admin-primary, #3b7ddd);
}

.account-brand-logo[b-7xctd5ccp4] {
    max-height: 2.25rem;
    max-width: 10rem;
    object-fit: contain;
}
/* /Components/Layout/CompactSidebar.razor.rz.scp.css */
.compact-sidebar[b-xm6kzugczd] {
    position: sticky;
    top: 0;
    height: 100vh;
    width: var(--admin-sidebar-width);
    flex: 0 0 var(--admin-sidebar-width);
    background: var(--admin-sidebar-bg);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.75rem 0;
    z-index: 1040;
}

.sidebar-logo[b-xm6kzugczd] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    margin-bottom: 1rem;
    color: var(--admin-primary);
}

.sidebar-logo svg[b-xm6kzugczd] {
    width: 1.75rem;
    height: 1.75rem;
}

.sidebar-nav[b-xm6kzugczd] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.15rem;
    width: 100%;
}

/* SidebarNavLink is a child component - its own root markup needs ::deep to be
   reached from here, so its item/link/flyout rules live in SidebarNavLink.razor.css
   instead (scoped CSS doesn't cross component boundaries without ::deep). */
/* /Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-x4rwsp7hdd] {
    display: flex;
    min-height: 100vh;
}

.page-main[b-x4rwsp7hdd] {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.content[b-x4rwsp7hdd] {
    flex: 1;
    padding: 1.5rem;
}

#blazor-error-ui[b-x4rwsp7hdd] {
    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-x4rwsp7hdd] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-3wd691v165],
.components-reconnect-repeated-attempt-visible[b-3wd691v165],
.components-reconnect-failed-visible[b-3wd691v165],
.components-pause-visible[b-3wd691v165],
.components-resume-failed-visible[b-3wd691v165],
.components-rejoining-animation[b-3wd691v165] {
    display: none;
}

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


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

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

}

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

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

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

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

    100% {
        opacity: 1;
    }
}

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

    100% {
        opacity: 0;
    }
}

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

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

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

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

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

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

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

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

@keyframes components-rejoining-animation-b-3wd691v165 {
    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/Layout/SidebarNavLink.razor.rz.scp.css */
.sidebar-item[b-qhzf3booew] {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
}

/* NavLink is a framework component - its rendered <a> doesn't carry this file's scope
   attribute, so reaching it needs ::deep. */
.sidebar-item[b-qhzf3booew]  .sidebar-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 0.5rem;
    color: #9aa7bd;
    border-left: 3px solid transparent;
}

.sidebar-item[b-qhzf3booew]  .sidebar-link svg {
    width: 1.3rem;
    height: 1.3rem;
}

.sidebar-item[b-qhzf3booew]  .sidebar-link:hover {
    color: #fff;
    background: var(--admin-sidebar-bg-hover);
}

.sidebar-item[b-qhzf3booew]  .sidebar-link.active {
    color: #fff;
    background: var(--admin-sidebar-bg-hover);
    border-left-color: var(--admin-primary);
}

.sidebar-flyout[b-qhzf3booew] {
    position: absolute;
    left: calc(100% + 0.5rem);
    top: 50%;
    transform: translateY(-50%) translateX(-0.25rem);
    background: #1a1f2b;
    color: #fff;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
    padding: 0.4rem 0.75rem;
    border-radius: 0.375rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.12s ease, transform 0.12s ease;
    z-index: 1041;
}

.sidebar-item:hover .sidebar-flyout[b-qhzf3booew] {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}
/* /Components/Layout/TopNavbar.razor.rz.scp.css */
.top-navbar[b-ko6q57tqe9] {
    height: 3.75rem;
    background: var(--admin-surface);
    border-bottom: 1px solid var(--admin-card-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1.25rem;
    position: sticky;
    top: 0;
    z-index: 1030;
}

.navbar-search[b-ko6q57tqe9] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--admin-canvas);
    border: 1px solid var(--admin-card-border);
    border-radius: 999px;
    padding: 0.45rem 0.9rem;
    width: 20rem;
    max-width: 40vw;
}

.navbar-search svg[b-ko6q57tqe9] {
    width: 1.1rem;
    height: 1.1rem;
    color: var(--admin-text-muted);
    flex-shrink: 0;
}

.navbar-search input[b-ko6q57tqe9] {
    border: none;
    background: none;
    outline: none;
    font-size: 0.88rem;
    width: 100%;
}

.navbar-actions[b-ko6q57tqe9] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.navbar-icon-btn[b-ko6q57tqe9] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.5rem;
    border: none;
    background: none;
    color: var(--admin-text-muted);
    position: relative;
}

.navbar-icon-btn:hover[b-ko6q57tqe9] {
    background: var(--admin-canvas);
}

.navbar-icon-btn svg[b-ko6q57tqe9] {
    width: 1.25rem;
    height: 1.25rem;
}

.navbar-badge[b-ko6q57tqe9] {
    position: absolute;
    top: 0.25rem;
    right: 0.25rem;
    background: #e6493f;
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    min-width: 1.05rem;
    height: 1.05rem;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 0.2rem;
}

.navbar-dropdown-wrap[b-ko6q57tqe9] {
    position: relative;
}

.navbar-avatar-btn[b-ko6q57tqe9] {
    border: none;
    background: none;
    padding: 0;
}

.navbar-avatar[b-ko6q57tqe9] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 999px;
    background: var(--admin-primary);
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
}

.navbar-dropdown-backdrop[b-ko6q57tqe9] {
    position: fixed;
    inset: 0;
    z-index: 1031;
}

.navbar-dropdown[b-ko6q57tqe9] {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    z-index: 1032;
    background: var(--admin-surface);
    border: 1px solid var(--admin-card-border);
    border-radius: 0.5rem;
    box-shadow: 0 0.75rem 1.5rem rgba(20, 30, 50, 0.15);
    min-width: 16rem;
    max-height: 24rem;
    overflow-y: auto;
    padding: 0.4rem 0;
}

.navbar-dropdown-end[b-ko6q57tqe9] {
    left: auto;
    right: 0;
}

.navbar-dropdown-header[b-ko6q57tqe9] {
    font-weight: 700;
    font-size: 0.82rem;
    padding: 0.5rem 1rem;
    color: var(--admin-text);
    border-bottom: 1px solid var(--admin-card-border);
    margin-bottom: 0.25rem;
}

.navbar-dropdown-item[b-ko6q57tqe9] {
    display: flex;
    flex-direction: column;
    padding: 0.5rem 1rem;
    color: var(--admin-text);
    text-decoration: none;
    font-size: 0.85rem;
}

.navbar-dropdown-item:hover[b-ko6q57tqe9] {
    background: var(--admin-canvas);
}

.navbar-dropdown-button[b-ko6q57tqe9] {
    width: 100%;
    text-align: left;
    border: none;
    background: none;
    color: #cc3131;
    font-weight: 600;
}

.navbar-color-menu[b-ko6q57tqe9] {
    min-width: 11rem;
    max-height: none;
    padding: 0.75rem;
}

.navbar-color-swatches[b-ko6q57tqe9] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    padding-top: 0.25rem;
}

.navbar-color-swatch[b-ko6q57tqe9] {
    width: 1.6rem;
    height: 1.6rem;
    border-radius: 999px;
    border: 2px solid transparent;
    cursor: pointer;
    padding: 0;
}

.navbar-color-swatch.active[b-ko6q57tqe9] {
    border-color: var(--admin-text);
    box-shadow: 0 0 0 2px var(--admin-surface);
}

@media (max-width: 575.98px) {
    .navbar-search[b-ko6q57tqe9] {
        width: 12rem;
    }
}
