/* /Components/Layout/MainLayout.razor.rz.scp.css */
/* Drawer becomes a full-height flex column: profile pinned, nav scrolls. */
[b-7c72kzhbqz] .mud-drawer-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.frk-drawer-profile[b-7c72kzhbqz] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1rem 0.85rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.frk-drawer-profile-text[b-7c72kzhbqz] {
    display: flex;
    flex-direction: column;
    min-width: 0;
    line-height: 1.25;
}

.frk-drawer-name[b-7c72kzhbqz] {
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.frk-drawer-role[b-7c72kzhbqz] {
    color: var(--mud-palette-primary);
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.frk-drawer-org[b-7c72kzhbqz] {
    color: var(--mud-palette-drawer-text);
    font-size: 0.78rem;
    opacity: 0.8;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.frk-drawer-nav[b-7c72kzhbqz] {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    padding-top: 0.25rem;
}

.frk-footer[b-7c72kzhbqz] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1.5rem;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem 1.5rem;
    margin-top: 1rem;
    opacity: 0.7;
}

#blazor-error-ui[b-7c72kzhbqz] {
    color-scheme: light only;
    background: #b13b3e;
    bottom: 0;
    box-sizing: border-box;
    color: white;
    display: none;
    left: 0;
    padding: 0.75rem 1rem;
    position: fixed;
    width: 100%;
    z-index: 2000;
}

#blazor-error-ui .dismiss[b-7c72kzhbqz] {
    cursor: pointer;
    position: absolute;
    right: 0.75rem;
    top: 0.5rem;
}
/* /Components/Layout/NavMenu.razor.rz.scp.css */
/* Navigation styling is handled by MudBlazor's drawer and theme. */
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-np0p10x2vi],
.components-reconnect-repeated-attempt-visible[b-np0p10x2vi],
.components-reconnect-failed-visible[b-np0p10x2vi],
.components-pause-visible[b-np0p10x2vi],
.components-resume-failed-visible[b-np0p10x2vi],
.components-rejoining-animation[b-np0p10x2vi] {
    display: none;
}

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


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

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

}

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

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

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

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

    100% {
        opacity: 1;
    }
}

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

    100% {
        opacity: 0;
    }
}

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

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

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

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

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

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

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

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

@keyframes components-rejoining-animation-b-np0p10x2vi {
    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/Shared/TrendChart.razor.rz.scp.css */
.frk-chart[b-dldsusoarg] {
    display: flex;
    align-items: flex-end;
    gap: 12px;
    height: 220px;
    padding-top: 8px;
}

.frk-chart-col[b-dldsusoarg] {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

.frk-chart-bars[b-dldsusoarg] {
    flex: 1;
    width: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 4px;
}

.frk-bar[b-dldsusoarg] {
    width: 38%;
    min-height: 2px;
    border-radius: 4px 4px 0 0;
    transition: height 0.3s ease;
}

.frk-chart-label[b-dldsusoarg] {
    margin-top: 8px;
    font-size: 0.75rem;
    opacity: 0.7;
}

.frk-legend[b-dldsusoarg] {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    opacity: 0.8;
}

.frk-legend i[b-dldsusoarg] {
    width: 10px;
    height: 10px;
    border-radius: 2px;
    display: inline-block;
}
