/* /Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-6odozvke35] {
    display: flex;
    min-height: 100vh;
}

.sidebar[b-6odozvke35] {
    width: 320px;
    min-height: 100vh;
    position: sticky;
    top: 0;
    align-self: flex-start;
    flex-shrink: 0;
    background: linear-gradient(180deg, #3D1249 0%, #421474 50%, #280050 100%);
}

main[b-6odozvke35] {
    flex: 1;
    min-width: 0;
    background-color: #f3f4f6;
}

article[b-6odozvke35] {
    padding: 1.5rem 1.25rem 2rem 1.25rem;
}

/* ==================== TOP BAR / LOGIN ==================== */

.top-bar[b-6odozvke35] {
    padding: 0.75rem 1.25rem 0 1.25rem;
    display: flex;
    justify-content: flex-end;
}

.user-bar[b-6odozvke35] {
    display: inline-flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    background: #fff;
    padding: 6px 10px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.05);
    border: 1px solid #e5e7eb;
    margin-bottom: 0;
    min-width: 260px;
    max-width: 360px;
}

.user-left[b-6odozvke35] {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
}

.avatar[b-6odozvke35] {
    width: 28px;
    height: 28px;
    border-radius: 999px;
    background: #EE7103;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 12px;
    flex-shrink: 0;
}

.user-name[b-6odozvke35] {
    font-size: 13px;
    font-weight: 700;
    color: #111827;
    line-height: 1.1;
    margin-bottom: 0;
}

.user-role[b-6odozvke35] {
    font-size: 11px;
    color: #6b7280;
    line-height: 1.1;
}

.logout-btn[b-6odozvke35] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border: 1px solid #ef4444;
    color: #ef4444;
    background: #fff;
    padding: 4px 8px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 12px;
    line-height: 1;
    transition: 0.15s ease-in-out;
    white-space: nowrap;
    flex-shrink: 0;
}

.logout-btn:hover[b-6odozvke35] {
    background: #fee2e2;
}

.login-status[b-6odozvke35] {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 10px;
    margin-bottom: 0;
    font-size: 14px;
}

.login-status.success[b-6odozvke35] {
    background: #ecfdf5;
    border: 1px solid #86efac;
    color: #166534;
}

.status-icon[b-6odozvke35] {
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
}

/* ==================== BLAZOR ERROR / RECONNECT ==================== */

#blazor-error-ui[b-6odozvke35] {
    color-scheme: light only;
    display: none;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: 1000;
    box-sizing: border-box;
    padding: 0.6rem 1.25rem 0.7rem;
    background: lightyellow;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
}

#blazor-error-ui .dismiss[b-6odozvke35] {
    position: absolute;
    top: 0.5rem;
    right: 0.75rem;
    cursor: pointer;
}

.components-reconnect-first-attempt-visible[b-6odozvke35],
.components-reconnect-repeated-attempt-visible[b-6odozvke35],
.components-reconnect-failed-visible[b-6odozvke35],
.components-pause-visible[b-6odozvke35],
.components-resume-failed-visible[b-6odozvke35],
.components-rejoining-animation[b-6odozvke35] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-6odozvke35],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-6odozvke35],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-6odozvke35],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-6odozvke35],
#components-reconnect-modal.components-reconnect-retrying[b-6odozvke35],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-6odozvke35],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-6odozvke35],
#components-reconnect-modal.components-reconnect-failed[b-6odozvke35],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-6odozvke35] {
    display: block;
}

#components-reconnect-modal[b-6odozvke35] {
    width: 20rem;
    margin: 20vh auto;
    padding: 2rem;
    border: 0;
    border-radius: 0.5rem;
    background-color: white;
    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-6odozvke35 0.5s both;
}

#components-reconnect-modal[open][b-6odozvke35] {
    animation:
        components-reconnect-modal-slideUp-b-6odozvke35 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s,
        components-reconnect-modal-fadeInOpacity-b-6odozvke35 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

#components-reconnect-modal[b-6odozvke35]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    opacity: 1;
    animation: components-reconnect-modal-fadeInOpacity-b-6odozvke35 0.5s ease-in-out;
}

@keyframes components-reconnect-modal-slideUp-b-6odozvke35 {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0) scale(1);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-6odozvke35 {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-6odozvke35 {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-6odozvke35] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-6odozvke35] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-6odozvke35] {
    border: 0;
    border-radius: 4px;
    padding: 4px 24px;
    background-color: #6b9ed2;
    color: white;
}

#components-reconnect-modal button:hover[b-6odozvke35] {
    background-color: #3b6ea2;
}

#components-reconnect-modal button:active[b-6odozvke35] {
    background-color: #6b9ed2;
}

.components-rejoining-animation[b-6odozvke35] {
    position: relative;
    width: 80px;
    height: 80px;
}

.components-rejoining-animation div[b-6odozvke35] {
    position: absolute;
    border: 3px solid #0087ff;
    border-radius: 50%;
    opacity: 1;
    animation: components-rejoining-animation-b-6odozvke35 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

.components-rejoining-animation div:nth-child(2)[b-6odozvke35] {
    animation-delay: -0.5s;
}

@keyframes components-rejoining-animation-b-6odozvke35 {
    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: 0;
        left: 0;
        width: 80px;
        height: 80px;
        opacity: 0;
    }
}

/* ==================== RESPONSIVE ==================== */

@media (max-width: 900px) {
    .top-bar[b-6odozvke35] {
        justify-content: stretch;
    }

    .user-bar[b-6odozvke35] {
        width: 100%;
        max-width: none;
    }
}

@media (max-width: 640.98px) {
    .page[b-6odozvke35] {
        flex-direction: column;
    }

    .sidebar[b-6odozvke35] {
        width: 100%;
        min-height: auto;
        position: relative;
    }

    .top-bar[b-6odozvke35] {
        padding: 0.75rem 0.75rem 0 0.75rem;
    }

    article[b-6odozvke35] {
        padding: 1rem 0.75rem;
    }

    .user-bar[b-6odozvke35] {
        width: 100%;
        max-width: none;
        min-width: 0;
    }
}
/* /Components/Layout/NavMenu.razor.rz.scp.css */
.sidebar-shell[b-kfu89itebl] {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.top-row[b-kfu89itebl] {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #3D1249;
    padding: 0;
    overflow: hidden;
    flex-shrink: 0;
}

.brand-container[b-kfu89itebl] {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: stretch;
    align-items: stretch;
    overflow: hidden;
}

.logo-main[b-kfu89itebl] {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    background-color: white;
}

.nav-scrollable[b-kfu89itebl] {
    flex: 1;
    overflow-y: auto;
    padding: 1rem 0;
    min-height: 0;
}

.menu-list[b-kfu89itebl] {
    display: flex;
    flex-direction: column;
}

.nav-item[b-kfu89itebl] {
    margin-bottom: 0.35rem;
    font-size: 1rem;
    padding: 0 0.75rem;
}

.nav-item[b-kfu89itebl]  .nav-link {
    display: block;
    width: 100%;
    padding: 0.85rem 1rem;
    border-radius: 10px;
    color: #f2f2f2;
    text-decoration: none;
    background: none;
    border: none;
    line-height: 1.35;
    box-sizing: border-box;
}

.nav-item[b-kfu89itebl]  .nav-link:hover {
    background-color: rgba(255, 255, 255, 0.12);
    color: white;
}

.nav-item[b-kfu89itebl]  a.active {
    background-color: rgba(238, 113, 3, 0.18);
    color: white;
    font-weight: 700;
    border-left: 3px solid #EE7103;
}

.menu-section[b-kfu89itebl] {
    margin-bottom: 1.5rem;
}

.menu-section-header[b-kfu89itebl] {
    padding: 0.5rem 1.25rem 0.25rem 1.25rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: #EE7103;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.logo-bottom[b-kfu89itebl] {
    margin-top: auto;
    padding: 0.75rem;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-shrink: 0;
    background-color: white;
    width: 100%;
    border-top: 1px solid #e5e7eb;
}

.logo-bottom a[b-kfu89itebl] {
    display: inline-block;
}

.logo-small[b-kfu89itebl] {
    width: 110px;
    height: auto;
    object-fit: contain;
}
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-lkho8k55x7],
.components-reconnect-repeated-attempt-visible[b-lkho8k55x7],
.components-reconnect-failed-visible[b-lkho8k55x7],
.components-pause-visible[b-lkho8k55x7],
.components-resume-failed-visible[b-lkho8k55x7],
.components-rejoining-animation[b-lkho8k55x7] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-lkho8k55x7],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-lkho8k55x7],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-lkho8k55x7],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-lkho8k55x7],
#components-reconnect-modal.components-reconnect-retrying[b-lkho8k55x7],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-lkho8k55x7],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-lkho8k55x7],
#components-reconnect-modal.components-reconnect-failed[b-lkho8k55x7],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-lkho8k55x7] {
    display: block;
}

#components-reconnect-modal[b-lkho8k55x7] {
    width: 20rem;
    margin: 20vh auto;
    padding: 2rem;
    border: 0;
    border-radius: 0.5rem;
    background-color: white;
    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-lkho8k55x7 0.5s both;
}

#components-reconnect-modal[open][b-lkho8k55x7] {
    animation:
        components-reconnect-modal-slideUp-b-lkho8k55x7 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s,
        components-reconnect-modal-fadeInOpacity-b-lkho8k55x7 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

#components-reconnect-modal[b-lkho8k55x7]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    opacity: 1;
    animation: components-reconnect-modal-fadeInOpacity-b-lkho8k55x7 0.5s ease-in-out;
}

@keyframes components-reconnect-modal-slideUp-b-lkho8k55x7 {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0) scale(1);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-lkho8k55x7 {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-lkho8k55x7 {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-lkho8k55x7] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-lkho8k55x7] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-lkho8k55x7] {
    border: 0;
    border-radius: 4px;
    padding: 4px 24px;
    background-color: #6b9ed2;
    color: white;
}

#components-reconnect-modal button:hover[b-lkho8k55x7] {
    background-color: #3b6ea2;
}

#components-reconnect-modal button:active[b-lkho8k55x7] {
    background-color: #6b9ed2;
}

.components-rejoining-animation[b-lkho8k55x7] {
    position: relative;
    width: 80px;
    height: 80px;
}

.components-rejoining-animation div[b-lkho8k55x7] {
    position: absolute;
    border: 3px solid #0087ff;
    border-radius: 50%;
    opacity: 1;
    animation: components-rejoining-animation-b-lkho8k55x7 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

.components-rejoining-animation div:nth-child(2)[b-lkho8k55x7] {
    animation-delay: -0.5s;
}

@keyframes components-rejoining-animation-b-lkho8k55x7 {
    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: 0;
        left: 0;
        width: 80px;
        height: 80px;
        opacity: 0;
    }
}
