/* /Components/Ai/AiChatPanel.razor.rz.scp.css */
.ai-chat-backdrop[b-cvhao8ps6h] {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.15);
    z-index: 1045;
}

.ai-chat-panel[b-cvhao8ps6h] {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 420px;
    max-width: 100vw;
    background: #fff;
    border-left: 1px solid #e5e7eb;
    z-index: 1046;
    display: flex;
    flex-direction: column;
    animation: ai-chat-slide-in-b-cvhao8ps6h 0.18s ease-out;
}

@keyframes ai-chat-slide-in-b-cvhao8ps6h {
    from { transform: translateX(100%); }
    to   { transform: translateX(0); }
}

.ai-chat-header[b-cvhao8ps6h] {
    border-bottom: 1px solid #eef0f2;
    flex-shrink: 0;
}

.ai-chat-messages[b-cvhao8ps6h] {
    flex: 1 1 auto;
    overflow-y: auto;
    scroll-behavior: smooth;
}

.ai-chat-msg[b-cvhao8ps6h] {
    margin-bottom: 0.9rem;
}

.ai-chat-msg-role[b-cvhao8ps6h] {
    font-weight: 600;
    letter-spacing: 0.01em;
}

.ai-chat-msg-body[b-cvhao8ps6h] {
    font-size: 0.9rem;
    line-height: 1.45;
    white-space: normal;
    word-break: break-word;
}

.ai-chat-msg-user .ai-chat-msg-body[b-cvhao8ps6h] {
    background: #eef2ff;
    border-radius: 0.6rem;
    padding: 0.5rem 0.7rem;
}

.ai-chat-msg-asst .ai-chat-msg-body[b-cvhao8ps6h] {
    padding: 0.1rem 0.1rem;
}

.ai-chat-msg-body code[b-cvhao8ps6h] {
    background: #f1f3f5;
    padding: 0.05rem 0.3rem;
    border-radius: 0.3rem;
    font-size: 0.82rem;
}

.ai-chat-cursor[b-cvhao8ps6h] {
    display: inline-block;
    animation: ai-chat-blink-b-cvhao8ps6h 1s steps(2, start) infinite;
    color: #6366f1;
    font-weight: 700;
}

@keyframes ai-chat-blink-b-cvhao8ps6h {
    to { visibility: hidden; }
}

.ai-chat-note[b-cvhao8ps6h] {
    color: #9ca3af;
}

.ai-chat-input[b-cvhao8ps6h] {
    flex-shrink: 0;
    background: #fff;
}

.ai-chat-input textarea[b-cvhao8ps6h] {
    resize: none;
}
/* /Components/Ai/AiConfirmCard.razor.rz.scp.css */
.ai-confirm-card[b-2lbspj6gk6] {
    border: 1px solid #fcd34d;
    background: #fffbeb;
    border-radius: 0.5rem;
    padding: 0.6rem 0.75rem;
}

.ai-confirm-card-body[b-2lbspj6gk6] {
    line-height: 1.35;
}
/* /Components/Layout/MainLayout.razor.rz.scp.css */
/* MainLayout scoped styles — layout handled in app.css */
/* /Components/Layout/NavMenu.razor.rz.scp.css */
/* NavMenu scoped styles — layout handled in app.css */
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-ftp61zsx5f],
.components-reconnect-repeated-attempt-visible[b-ftp61zsx5f],
.components-reconnect-failed-visible[b-ftp61zsx5f],
.components-pause-visible[b-ftp61zsx5f],
.components-resume-failed-visible[b-ftp61zsx5f],
.components-rejoining-animation[b-ftp61zsx5f] {
    display: none;
}

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


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

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

}

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

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

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

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

    100% {
        opacity: 1;
    }
}

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

    100% {
        opacity: 0;
    }
}

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

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

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

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

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

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

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

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

@keyframes components-rejoining-animation-b-ftp61zsx5f {
    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;
    }
}
