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

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


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

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

}

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

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

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

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

    100% {
        opacity: 1;
    }
}

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

    100% {
        opacity: 0;
    }
}

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

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

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

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

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

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

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

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

@keyframes components-rejoining-animation-b-fe082souj3 {
    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/KiDashboardShell.razor.rz.scp.css */
.ki-dashboard[b-0sbxw1b5xy] {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    background: #171717;
    color: #f5f5f5;
}

.ki-dashboard__main[b-0sbxw1b5xy] {
    min-width: 0;
    display: grid;
    grid-template-rows: auto minmax(0, 1fr);
    background: linear-gradient(180deg, rgba(255,255,255,0.02) 0%, rgba(255,255,255,0.00) 100%);
}

.ki-dashboard__content[b-0sbxw1b5xy] {
    min-width: 0;
    padding: 2rem;
}

@media (max-width: 960px) {
    .ki-dashboard[b-0sbxw1b5xy] {
        grid-template-columns: 1fr;
    }

    .ki-dashboard__content[b-0sbxw1b5xy] {
        padding: 1rem;
    }
}
/* /Components/Shared/KiDashboardSidebar.razor.rz.scp.css */
.ki-sidebar[b-klqixeb2zl] {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    padding: 1.25rem 1rem;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    background: #111111;
    position: sticky;
    top: 0;
}

.ki-sidebar__header[b-klqixeb2zl] {
    padding: 0.35rem 0.5rem 1.25rem;
}

.ki-sidebar__logo[b-klqixeb2zl] {
    display: inline-flex;
    align-items: center;
    color: #f5f5f5;
}

.ki-sidebar__nav[b-klqixeb2zl] {
    flex: 1;
}

.ki-nav-list[b-klqixeb2zl] {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.5rem;
}

.ki-nav-item[b-klqixeb2zl] {
    margin: 0;
}

.ki-nav-link[b-klqixeb2zl] {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.95rem 1rem;
    border-radius: 14px;
    color: rgba(255, 255, 255, 0.75);
    border: 1px solid transparent;
    transition: all 0.2s ease;
}

.ki-nav-link:hover[b-klqixeb2zl] {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.08);
}

.ki-nav-link--active[b-klqixeb2zl] {
    color: #ffffff;
    background: rgba(44, 160, 255, 0.12);
    border-color: rgba(44, 160, 255, 0.22);
    box-shadow: inset 0 0 0 1px rgba(44, 160, 255, 0.08);
}

.ki-nav-icon[b-klqixeb2zl] {
    width: 1.35rem;
    text-align: center;
    flex: 0 0 1.35rem;
}

.ki-nav-text[b-klqixeb2zl] {
    min-width: 0;
    font-weight: 600;
}

.ki-sidebar__footer[b-klqixeb2zl] {
    margin-top: 1rem;
    padding: 1rem 0.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.ki-sidebar__link-back[b-klqixeb2zl] {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.95rem;
}

.ki-sidebar__link-back:hover[b-klqixeb2zl] {
    color: #ffffff;
}

@media (max-width: 960px) {
    .ki-sidebar[b-klqixeb2zl] {
        min-height: auto;
        position: static;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .ki-nav-list[b-klqixeb2zl] {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .ki-nav-list[b-klqixeb2zl] {
        grid-template-columns: 1fr;
    }
}
/* /Components/Shared/KiDashboardTopBar.razor.rz.scp.css */
.ki-topbar[b-w91t162bgy] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    background: rgba(23, 23, 23, 0.92);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    gap: 1.5rem;
    backdrop-filter: blur(10px);
}

.ki-topbar__left[b-w91t162bgy] {
    flex: 1;
    min-width: 0;
}

.ki-topbar__title[b-w91t162bgy] {
    margin: 0;
    font-size: 1.6rem;
    font-weight: 700;
    color: #f5f5f5;
}

.ki-topbar__right[b-w91t162bgy] {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.ki-topbar__lang-toggle[b-w91t162bgy] {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.10);
    color: #f5f5f5;
    font-size: 1rem;
    cursor: pointer;
    padding: 0.7rem 0.85rem;
    border-radius: 12px;
    transition: all 0.2s ease;
}

.ki-topbar__lang-toggle:hover[b-w91t162bgy] {
    background-color: rgba(255, 255, 255, 0.08);
}

.ki-topbar__user-menu[b-w91t162bgy] {
    position: relative;
}

.ki-topbar__user-button[b-w91t162bgy] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 12px;
    padding: 0.45rem 0.7rem;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.95rem;
    color: #f5f5f5;
}

.ki-topbar__user-button:hover[b-w91t162bgy] {
    background-color: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.16);
}

.ki-topbar__user-avatar[b-w91t162bgy] {
    width: 2rem;
    height: 2rem;
    border-radius: 999px;
    background-color: #2CA0FF;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.78rem;
    font-weight: 700;
}

.ki-topbar__user-name[b-w91t162bgy] {
    max-width: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: rgba(255, 255, 255, 0.88);
}

.ki-topbar__dropdown[b-w91t162bgy] {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    background-color: #1e1e1e;
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 14px;
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.35);
    min-width: 220px;
    overflow: hidden;
    z-index: 1000;
}

.ki-topbar__dropdown-item[b-w91t162bgy] {
    display: block;
    width: 100%;
    padding: 0.9rem 1rem;
    background: none;
    border: none;
    color: #f5f5f5;
    text-align: left;
    cursor: pointer;
    font-size: 0.95rem;
    transition: background-color 0.2s ease;
    text-decoration: none;
}

.ki-topbar__dropdown-item:hover[b-w91t162bgy] {
    background-color: rgba(255, 255, 255, 0.05);
}

.ki-topbar__dropdown-item--logout[b-w91t162bgy] {
    color: #fca5a5;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.ki-topbar__dropdown-item--logout:hover[b-w91t162bgy] {
    background-color: rgba(248, 113, 113, 0.12);
}

@media (max-width: 768px) {
    .ki-topbar[b-w91t162bgy] {
        padding: 1rem;
        gap: 0.75rem;
    }

    .ki-topbar__title[b-w91t162bgy] {
        font-size: 1.2rem;
    }

    .ki-topbar__user-name[b-w91t162bgy] {
        display: none;
    }

    .ki-topbar__dropdown[b-w91t162bgy] {
        min-width: 180px;
    }
}
/* /Components/Shared/NotificationMessage.razor.rz.scp.css */
.ki-notification[b-pb2cuy2lvr] {
    position: fixed;
    top: 1rem;
    right: 1rem;
    z-index: 2000;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    width: min(380px, calc(100vw - 2rem));
    padding: 1rem 1rem 1rem 1.1rem;
    border-radius: 14px;
    border: 1px solid #3a3a3a;
    background: rgba(23, 23, 23, 0.98);
    color: #f5f5f5;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.ki-notification-content[b-pb2cuy2lvr] {
    display: flex;
    flex: 1 1 auto;
    min-width: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
}

.ki-notification-title[b-pb2cuy2lvr] {
    display: block;
    width: 100%;
    margin: 0;
    font-size: 0.95rem;
    font-weight: 700;
}

.ki-notification-text[b-pb2cuy2lvr] {
    display: block;
    width: 100%;
    overflow-wrap: anywhere;
    line-height: 1.35;
}

.ki-notification-error[b-pb2cuy2lvr] {
    border-color: #b42318;
    background: linear-gradient(180deg, rgba(92, 16, 16, 0.96) 0%, rgba(23, 23, 23, 0.98) 100%);
    box-shadow: 0 12px 30px rgba(180, 35, 24, 0.28);
}

.ki-notification-warning[b-pb2cuy2lvr] {
    border-color: #d4a017;
    background: linear-gradient(180deg, rgba(94, 74, 8, 0.96) 0%, rgba(23, 23, 23, 0.98) 100%);
    box-shadow: 0 12px 30px rgba(212, 160, 23, 0.24);
}

.ki-notification-message[b-pb2cuy2lvr] {
    border-color: #3267d6;
    background: linear-gradient(180deg, rgba(18, 40, 88, 0.96) 0%, rgba(23, 23, 23, 0.98) 100%);
    box-shadow: 0 12px 30px rgba(50, 103, 214, 0.2);
}

.ki-notification[b-pb2cuy2lvr]::before {
    content: "";
    width: 5px;
    align-self: stretch;
    border-radius: 999px;
    background: #6aa9ff;
}

.ki-notification-error[b-pb2cuy2lvr]::before {
    background: #ff4d4f;
}

.ki-notification-warning[b-pb2cuy2lvr]::before {
    background: #ffd24d;
}

.ki-notification-message[b-pb2cuy2lvr]::before {
    background: #6aa9ff;
}

.ki-notification-close[b-pb2cuy2lvr] {
    flex: 0 0 auto;
    border: 0;
    background: transparent;
    color: #f5f5f5;
    font-size: 1.25rem;
    line-height: 1;
    cursor: pointer;
    padding: 0;
    opacity: 0.9;
}

.ki-notification-close:hover[b-pb2cuy2lvr] {
    opacity: 1;
}

@media (max-width: 768px) {
    .ki-notification[b-pb2cuy2lvr] {
        top: 0.75rem;
        right: 0.75rem;
        width: calc(100vw - 1.5rem);
        max-width: none;
    }
}
