/* /Components/Layout/MainLayout.razor.rz.scp.css */
:root[b-goyhwb3nlh] {
    --app-sidebar-width: 260px;
    --app-header-height: 64px;
    --app-primary: #6c5ffc;
    --app-bg: #f1f4fb;
    --app-border: #e9edf4;
}

.app-session-loading[b-goyhwb3nlh] {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.app-shell[b-goyhwb3nlh] {
    min-height: 100vh;
    background: var(--app-bg);
    overflow-x: hidden;
}

.app-sidebar[b-goyhwb3nlh] {
    position: fixed;
    inset: 0 auto 0 0;
    width: var(--app-sidebar-width);
    background: #fff;
    border-right: 1px solid var(--app-border);
    box-shadow: 0 8px 24px rgba(15, 23, 42, .06);
    z-index: 1030;
    overflow-y: auto;
}

.app-main[b-goyhwb3nlh] {
    min-height: 100vh;
    margin-left: var(--app-sidebar-width);
    transition: margin-left .2s ease;
}

.app-shell.sidebar-hidden .app-sidebar[b-goyhwb3nlh] {
    transform: translateX(-100%);
}

.app-shell.sidebar-hidden .app-main[b-goyhwb3nlh] {
    margin-left: 0;
}

.app-header[b-goyhwb3nlh] {
    height: var(--app-header-height);
    background: #fff;
    border-bottom: 1px solid var(--app-border);
    display: flex;
    align-items: center;
    padding: 0 22px;
    position: sticky;
    top: 0;
    z-index: 1020;
}

.app-header-toggle[b-goyhwb3nlh],
.app-icon-button[b-goyhwb3nlh] {
    border: 0;
    background: transparent;
    color: #334155;
    font-size: 22px;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.app-header-toggle:hover[b-goyhwb3nlh],
.app-icon-button:hover[b-goyhwb3nlh] {
    background: #f1f5f9;
}

.app-header-spacer[b-goyhwb3nlh] {
    flex: 1;
}

.app-content[b-goyhwb3nlh] {
    padding: 28px;
    min-width: 0;
    max-width: 100%;
}

.app-profile[b-goyhwb3nlh] {
    position: relative;
}

.app-profile-button[b-goyhwb3nlh] {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 0;
    background: var(--app-primary);
    color: #fff;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.app-profile-button img[b-goyhwb3nlh],
.app-profile-large img[b-goyhwb3nlh] {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.app-profile-panel[b-goyhwb3nlh] {
    position: absolute;
    right: 0;
    top: 54px;
    width: min(320px, calc(100vw - 24px));
    background: #fff;
    border: 1px solid var(--app-border);
    border-radius: 16px;
    box-shadow: 0 14px 40px rgba(15, 23, 42, .14);
    z-index: 1050;
}

.app-profile-panel-header[b-goyhwb3nlh] {
    padding: 16px;
    border-bottom: 1px solid var(--app-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.app-profile-panel-header small[b-goyhwb3nlh] {
    display: block;
    color: #64748b;
}

.app-profile-panel-body[b-goyhwb3nlh] {
    padding: 18px;
    text-align: center;
}

.app-profile-large[b-goyhwb3nlh] {
    width: 82px;
    height: 82px;
    border-radius: 50%;
    margin: 0 auto 12px;
    background: var(--app-primary);
    color: #fff;
    font-size: 26px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.app-profile-panel-body p[b-goyhwb3nlh] {
    color: #64748b;
}

.app-mobile-overlay[b-goyhwb3nlh] {
    display: none;
}

.app-session-error[b-goyhwb3nlh] {
    width: min(560px, calc(100vw - 32px));
}

@media (max-width: 991.98px) {
    .app-sidebar[b-goyhwb3nlh] {
        transform: translateX(-100%);
        transition: transform .2s ease;
    }

    .app-main[b-goyhwb3nlh] {
        margin-left: 0;
    }

    .app-shell.sidebar-open .app-sidebar[b-goyhwb3nlh] {
        transform: translateX(0);
    }

    .app-shell.sidebar-open .app-mobile-overlay[b-goyhwb3nlh] {
        display: block;
        position: fixed;
        inset: 0;
        background: rgba(15, 23, 42, .45);
        z-index: 1025;
    }

    .app-content[b-goyhwb3nlh] {
        padding: 18px;
    }

    .app-shell.sidebar-hidden .app-sidebar[b-goyhwb3nlh] {
        transform: translateX(-100%);
    }
}
/* /Components/Layout/NavMenu.razor.rz.scp.css */
.app-sidebar-brand[b-76exzup3ar] {
    height: 64px;
    display: flex;
    align-items: center;
    padding: 0 26px;
    border-bottom: 1px solid #e9edf4;
}

.app-sidebar-brand a[b-76exzup3ar] {
    text-decoration: none;
}

.app-sidebar-brand-text[b-76exzup3ar] {
    color: #6c5ffc;
    font-size: 18px;
    font-weight: 800;
}

.app-sidebar-user[b-76exzup3ar] {
    padding: 18px 26px;
}

.app-sidebar-user strong[b-76exzup3ar] {
    display: block;
    color: #0f172a;
}

.app-sidebar-user span[b-76exzup3ar] {
    display: block;
    color: #64748b;
    font-size: 13px;
    margin-top: 2px;
}

.app-sidebar-nav[b-76exzup3ar] {
    padding: 8px 12px 24px;
}

.app-menu-item[b-76exzup3ar],
.app-menu-group[b-76exzup3ar] {
    margin-bottom: 6px;
}

.app-menu-link[b-76exzup3ar],
.app-menu-group-button[b-76exzup3ar] {
    width: 100%;
    min-height: 46px;
    border: 0;
    border-radius: 8px;
    background: transparent;
    color: #334155;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 16px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}

.app-menu-group-button[b-76exzup3ar] {
    justify-content: space-between;
}

.app-menu-group-button > span[b-76exzup3ar] {
    display: flex;
    align-items: center;
    gap: 12px;
}

.app-menu-link:hover[b-76exzup3ar],
.app-menu-group-button:hover[b-76exzup3ar],
.app-menu-link.active[b-76exzup3ar],
.app-menu-group-button.active[b-76exzup3ar] {
    background: #6c5ffc;
    color: #fff;
}

.app-menu-icon[b-76exzup3ar] {
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
    font-size: 20px;
}

.app-menu-arrow[b-76exzup3ar] {
    width: 20px;
    height: 20px;
    font-size: 20px;
    transition: transform .18s ease;
}

.app-menu-group.open .app-menu-arrow[b-76exzup3ar] {
    transform: rotate(90deg);
}

.app-submenu[b-76exzup3ar] {
    padding: 6px 0 4px 42px;
}

.app-submenu-link[b-76exzup3ar] {
    display: block;
    color: #475569;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 7px;
    font-size: 13px;
    font-weight: 500;
}

.app-submenu-link:hover[b-76exzup3ar],
.app-submenu-link.active[b-76exzup3ar] {
    color: #6c5ffc;
    background: rgba(108, 95, 252, .08);
}

.app-sidebar-brand a[b-76exzup3ar] {
    display: inline-flex;
    align-items: center;
    gap: .75rem;
}

.app-sidebar-logo[b-76exzup3ar] {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #6c5ffc;
    color: #fff;
    font-size: .8rem;
    font-weight: 800;
    letter-spacing: .04em;
}

.app-panel-menu[b-76exzup3ar] {
    padding: 8px 12px 24px;
}

[b-76exzup3ar] .app-panel-menu .rz-panel-menu {
    border: 0;
    background: transparent;
}

[b-76exzup3ar] .app-panel-menu .rz-panel-menu .rz-navigation-item-wrapper {
    border-radius: 10px;
    margin-bottom: 4px;
}

[b-76exzup3ar] .app-panel-menu .rz-panel-menu .rz-navigation-item-link {
    min-height: 42px;
    border-radius: 10px;
    font-weight: 600;
}

[b-76exzup3ar] .app-panel-menu .rz-panel-menu .rz-navigation-item-active > .rz-navigation-item-wrapper,
[b-76exzup3ar] .app-panel-menu .rz-panel-menu .rz-navigation-item-wrapper:hover {
    background: rgba(108, 95, 252, .11);
}
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-sg9z17k3k9],
.components-reconnect-repeated-attempt-visible[b-sg9z17k3k9],
.components-reconnect-failed-visible[b-sg9z17k3k9],
.components-pause-visible[b-sg9z17k3k9],
.components-resume-failed-visible[b-sg9z17k3k9],
.components-rejoining-animation[b-sg9z17k3k9] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-sg9z17k3k9],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-sg9z17k3k9],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-sg9z17k3k9],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-sg9z17k3k9],
#components-reconnect-modal.components-reconnect-retrying[b-sg9z17k3k9],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-sg9z17k3k9],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-sg9z17k3k9],
#components-reconnect-modal.components-reconnect-failed[b-sg9z17k3k9],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-sg9z17k3k9] {
    display: block;
}


#components-reconnect-modal[b-sg9z17k3k9] {
    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-sg9z17k3k9 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-sg9z17k3k9 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-sg9z17k3k9 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-sg9z17k3k9]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-sg9z17k3k9 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-sg9z17k3k9 {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-sg9z17k3k9 {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-sg9z17k3k9 {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-sg9z17k3k9] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-sg9z17k3k9] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-sg9z17k3k9] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-sg9z17k3k9] {
        background-color: #3b6ea2;
    }

    #components-reconnect-modal button:active[b-sg9z17k3k9] {
        background-color: #6b9ed2;
    }

.components-rejoining-animation[b-sg9z17k3k9] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-sg9z17k3k9] {
        position: absolute;
        border: 3px solid #0087ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-sg9z17k3k9 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-sg9z17k3k9] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-sg9z17k3k9 {
    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/Profil.razor.rz.scp.css */
.profile-grid[b-6gf2136rlz] {
    max-width: 1180px;
}

.profile-card[b-6gf2136rlz],
.profile-form[b-6gf2136rlz] {
    padding: 24px;
    border-radius: 8px;
}

.profile-card[b-6gf2136rlz] {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.profile-photo-wrap[b-6gf2136rlz] {
    width: 132px;
    height: 132px;
    margin-bottom: 16px;
}

.profile-photo[b-6gf2136rlz],
.profile-photo-placeholder[b-6gf2136rlz] {
    width: 132px;
    height: 132px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    object-fit: cover;
}

.profile-photo[b-6gf2136rlz] {
    border: 3px solid #1976d2;
}

.profile-photo-placeholder[b-6gf2136rlz] {
    background: #1976d2;
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
}

.profile-upload-button[b-6gf2136rlz] {
    margin-top: 16px;
    min-height: 38px;
    padding: 0 18px;
    border: 1px solid #1976d2;
    border-radius: 6px;
    color: #1976d2;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    cursor: pointer;
}

.profile-upload-button:hover[b-6gf2136rlz] {
    background: rgba(25, 118, 210, 0.08);
}

.profile-file-input[b-6gf2136rlz] {
    display: none;
}

.profile-info-line[b-6gf2136rlz] {
    width: 100%;
    min-height: 32px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #455a64;
}

.profile-info-line span[b-6gf2136rlz] {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.profile-actions[b-6gf2136rlz] {
    margin-top: 20px;
    display: flex;
    justify-content: flex-end;
}

@media (max-width: 600px) {
    .profile-card[b-6gf2136rlz],
    .profile-form[b-6gf2136rlz] {
        padding: 18px;
    }

    .profile-actions[b-6gf2136rlz] {
        justify-content: stretch;
    }

    .profile-actions[b-6gf2136rlz]  .rz-button,
    .profile-actions[b-6gf2136rlz]  .app-button {
        width: 100%;
    }
}
