@import '_content/IDOM.Extensions.IBE/IDOM.Extensions.IBE.ucq2ch673t.bundle.scp.css';

/* /Components/Chatbot/AdrianaChatbot.razor.rz.scp.css */
.adriana-chat[b-7cfuykbn45] {
    display: grid;
    grid-template-rows: 60px minmax(0, 1fr) auto;
    height: 100dvh;
    min-height: 0;
    overflow: hidden;
    background: #f7f8fa;
}

.chat-topbar[b-7cfuykbn45] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
    padding: 0 18px 0 16px;
    background: #0d73ff;
    border-top: 1px solid #c500ff;
    box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.16);
}

.brand[b-7cfuykbn45] {
    display: flex;
    align-items: center;
    min-width: 0;
}

.brand-avatar[b-7cfuykbn45] {
    width: 52px;
    height: 52px;
    margin-right: 8px;
}

.brand-name[b-7cfuykbn45] {
    color: #fff;
    font-size: 30px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.18);
    white-space: nowrap;
}

.topbar-actions[b-7cfuykbn45] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 280px;
}

.icon-button[b-7cfuykbn45] {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.28);
    color: #fff;
    background: rgba(255, 255, 255, 0.04);
}

.circle-button[b-7cfuykbn45] {
    border-radius: 50%;
}

.menu-button[b-7cfuykbn45] {
    gap: 5px;
    border-radius: 6px;
}

.menu-button span[b-7cfuykbn45] {
    display: block;
    width: 27px;
    height: 2px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.75);
}

.message-area[b-7cfuykbn45] {
    min-height: 0;
    overflow-y: auto;
    padding: 24px 20px 28px;
    background: #fafbfc;
}

.message[b-7cfuykbn45] {
    width: fit-content;
    max-width: 100%;
    margin-bottom: 14px;
    padding: 10px 16px;
    border-radius: 8px;
    white-space: pre-wrap;
    line-height: 1.45;
    color: #252a33;
}

.user-message[b-7cfuykbn45] {
    margin-left: auto;
    background: #dfefff;
}

.assistant-message[b-7cfuykbn45] {
    background: #fff;
    border: 1px solid #eceff4;
    white-space: normal;
}

.assistant-message :is(p, ul, ol, h1, h2, h3, h4)[b-7cfuykbn45] {
    margin-top: 0;
}

.assistant-message :is(p, ul, ol)[b-7cfuykbn45] {
    margin-bottom: 12px;
}

.assistant-message :is(h1, h2, h3, h4)[b-7cfuykbn45] {
    margin-bottom: 8px;
    line-height: 1.25;
    font-size: 1.05em;
}

.assistant-message :is(ul, ol)[b-7cfuykbn45] {
    padding-left: 22px;
}

.assistant-message :last-child[b-7cfuykbn45] {
    margin-bottom: 0;
}

.canvas-open-button[b-7cfuykbn45] {
    margin-top: 12px;
    padding: 8px 12px;
    border: 1px solid #0d73ff;
    border-radius: 7px;
    color: #0757c8;
    background: #f4f8ff;
    font: inherit;
    font-weight: 700;
    cursor: pointer;
}

.canvas-open-button:hover[b-7cfuykbn45] {
    background: #e8f1ff;
}

.typing-indicator[b-7cfuykbn45] {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 14px;
    padding: 13px 16px;
    border: 1px solid #eceff4;
    border-radius: 8px;
    background: #fff;
}

.typing-indicator span[b-7cfuykbn45] {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #a7adb8;
    animation: typing-bounce-b-7cfuykbn45 0.9s infinite ease-in-out;
}

.typing-indicator span:nth-child(2)[b-7cfuykbn45] {
    animation-delay: 0.12s;
}

.typing-indicator span:nth-child(3)[b-7cfuykbn45] {
    animation-delay: 0.24s;
}

@keyframes typing-bounce-b-7cfuykbn45 {
    0%, 80%, 100% {
        transform: translateY(0);
        opacity: 0.45;
    }

    40% {
        transform: translateY(-5px);
        opacity: 1;
    }
}

.composer-area[b-7cfuykbn45] {
    padding: 26px 20px;
    background: #f2f3f6;
    box-shadow: inset 0 1px 0 #eef0f3;
}

.composer[b-7cfuykbn45] {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 44px;
    gap: 10px;
    min-height: 96px;
    padding: 14px 12px 10px 18px;
    border: 2px solid #4a5cf6;
    border-radius: 10px;
    background: #fff;
}

.composer:focus-within[b-7cfuykbn45] {
    box-shadow: 0 0 0 2px rgba(74, 92, 246, 0.12);
}

textarea[b-7cfuykbn45] {
    width: 100%;
    resize: none;
    border: 0;
    outline: 0;
    overflow-y: auto;
    color: #29313d;
    font-size: 18px;
    line-height: 1.45;
}

textarea[b-7cfuykbn45]::placeholder {
    color: #8d94a1;
}

.send-button[b-7cfuykbn45] {
    align-self: end;
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 6px;
    background: transparent;
    color: #a4a7ad;
}

.send-button:hover[b-7cfuykbn45] {
    color: #4a5cf6;
}

.send-button svg[b-7cfuykbn45] {
    width: 27px;
    height: 27px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linejoin: round;
}

@media (max-width: 760px) {
    .brand-name[b-7cfuykbn45] {
        font-size: 26px;
    }

    .topbar-actions[b-7cfuykbn45] {
        width: 116px;
    }

    .composer-area[b-7cfuykbn45] {
        padding: 18px;
    }
}
/* /Components/Layout/MainLayout.razor.rz.scp.css */
#blazor-error-ui[b-uydvar87g3] {
    background: #b32121;
    bottom: 0;
    color: #fff;
    display: none;
    left: 0;
    padding: 0.75rem 1rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

#blazor-error-ui .dismiss[b-uydvar87g3] {
    cursor: pointer;
    position: absolute;
    right: 0.75rem;
    top: 0.5rem;
}
/* /Components/Layout/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-h0n7o9rm70] {
    appearance: none;
    cursor: pointer;
    width: 3.5rem;
    height: 2.5rem;
    color: white;
    position: absolute;
    top: 0.5rem;
    right: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") no-repeat center/1.75rem rgba(255, 255, 255, 0.1);
}

.navbar-toggler:checked[b-h0n7o9rm70] {
    background-color: rgba(255, 255, 255, 0.5);
}

.top-row[b-h0n7o9rm70] {
    min-height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

.navbar-brand[b-h0n7o9rm70] {
    font-size: 1.1rem;
}

.bi[b-h0n7o9rm70] {
    display: inline-block;
    position: relative;
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.75rem;
    top: -1px;
    background-size: cover;
}

.bi-house-door-fill-nav-menu[b-h0n7o9rm70] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-house-door-fill' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 14.5v-3.505c0-.245.25-.495.5-.495h2c.25 0 .5.25.5.5v3.5a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5v-7a.5.5 0 0 0-.146-.354L13 5.793V2.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5v1.293L8.354 1.146a.5.5 0 0 0-.708 0l-6 6A.5.5 0 0 0 1.5 7.5v7a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5Z'/%3E%3C/svg%3E");
}

.bi-plus-square-fill-nav-menu[b-h0n7o9rm70] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-plus-square-fill' viewBox='0 0 16 16'%3E%3Cpath d='M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2zm6.5 4.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3a.5.5 0 0 1 1 0z'/%3E%3C/svg%3E");
}

.bi-list-nested-nav-menu[b-h0n7o9rm70] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-list-nested' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4.5 11.5A.5.5 0 0 1 5 11h10a.5.5 0 0 1 0 1H5a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 3 7h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 1 3h10a.5.5 0 0 1 0 1H1a.5.5 0 0 1-.5-.5z'/%3E%3C/svg%3E");
}

.nav-item[b-h0n7o9rm70] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-h0n7o9rm70] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-h0n7o9rm70] {
        padding-bottom: 1rem;
    }

    .nav-item[b-h0n7o9rm70]  .nav-link {
        color: #d7d7d7;
        background: none;
        border: none;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
        width: 100%;
    }

.nav-item[b-h0n7o9rm70]  a.active {
    background-color: rgba(255,255,255,0.37);
    color: white;
}

.nav-item[b-h0n7o9rm70]  .nav-link:hover {
    background-color: rgba(255,255,255,0.1);
    color: white;
}

.nav-scrollable[b-h0n7o9rm70] {
    display: none;
}

.navbar-toggler:checked ~ .nav-scrollable[b-h0n7o9rm70] {
    display: block;
}

@media (min-width: 641px) {
    .navbar-toggler[b-h0n7o9rm70] {
        display: none;
    }

    .nav-scrollable[b-h0n7o9rm70] {
        /* Never collapse the sidebar for wide screens */
        display: block;

        /* Allow sidebar to scroll for tall menus */
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-ncle0l2b92],
.components-reconnect-repeated-attempt-visible[b-ncle0l2b92],
.components-reconnect-failed-visible[b-ncle0l2b92],
.components-pause-visible[b-ncle0l2b92],
.components-resume-failed-visible[b-ncle0l2b92],
.components-rejoining-animation[b-ncle0l2b92] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-ncle0l2b92],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-ncle0l2b92],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-ncle0l2b92],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-ncle0l2b92],
#components-reconnect-modal.components-reconnect-retrying[b-ncle0l2b92],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-ncle0l2b92],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-ncle0l2b92],
#components-reconnect-modal.components-reconnect-failed[b-ncle0l2b92],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-ncle0l2b92] {
    display: block;
}


#components-reconnect-modal[b-ncle0l2b92] {
    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-ncle0l2b92 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-ncle0l2b92 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-ncle0l2b92 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-ncle0l2b92]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-ncle0l2b92 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-ncle0l2b92 {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-ncle0l2b92 {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-ncle0l2b92 {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-ncle0l2b92] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-ncle0l2b92] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-ncle0l2b92] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-ncle0l2b92] {
        background-color: #3b6ea2;
    }

    #components-reconnect-modal button:active[b-ncle0l2b92] {
        background-color: #6b9ed2;
    }

.components-rejoining-animation[b-ncle0l2b92] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-ncle0l2b92] {
        position: absolute;
        border: 3px solid #0087ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-ncle0l2b92 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-ncle0l2b92] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-ncle0l2b92 {
    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/Home.razor.rz.scp.css */
.agent-shell[b-kmwlqmrypu] {
    display: grid;
    grid-template-columns: 687px minmax(0, 1fr);
    height: 100dvh;
    min-height: 0;
    overflow: hidden;
    background: #fff;
}

.agent-shell.with-rag-editor[b-kmwlqmrypu] {
    grid-template-columns: 620px minmax(0, 1fr) 560px;
}

.chat-frame[b-kmwlqmrypu] {
    min-width: 0;
    min-height: 0;
    overflow: hidden;
    border-right: 1px solid #e7e9ef;
    background: #f8f9fb;
}

.workspace-frame[b-kmwlqmrypu] {
    min-width: 0;
    min-height: 0;
    overflow: hidden;
    background: #fff;
}

.rag-editor-frame[b-kmwlqmrypu] {
    min-width: 0;
    min-height: 0;
    overflow: hidden;
}

.results-fab[b-kmwlqmrypu], .results-overlay[b-kmwlqmrypu] { display: none; }

@media (max-width: 1200px) {
    .agent-shell.with-rag-editor[b-kmwlqmrypu] {
        grid-template-columns: 687px minmax(0, 1fr);
    }

    .rag-editor-frame[b-kmwlqmrypu] {
        display: none;
    }
}

@media (max-width: 900px) {
    .agent-shell[b-kmwlqmrypu] {
        grid-template-columns: 1fr;
    }

    .workspace-frame[b-kmwlqmrypu] {
        display: none;
    }

    .results-fab[b-kmwlqmrypu] {
        display: flex;
        position: fixed;
        right: 20px;
        bottom: 24px;
        z-index: 20;
        gap: 8px;
        align-items: center;
        border: 0;
        border-radius: 999px;
        padding: 13px 18px;
        background: #20212a;
        color: #fff;
        font-weight: 700;
        box-shadow: 0 8px 22px rgba(0, 0, 0, .25);
    }

    .results-fab span[b-kmwlqmrypu] { display: grid; place-items: center; min-width: 22px; height: 22px; border-radius: 999px; background: #fff; color: #20212a; font-size: .78rem; }
    .results-overlay[b-kmwlqmrypu] { display: grid; position: fixed; inset: 0; z-index: 30; padding: 4dvh 12px 12dvh; background: rgba(16, 18, 26, .45); align-items: center; }
    .results-sheet[b-kmwlqmrypu] { position: relative; height: min(78dvh, 720px); overflow: hidden; border-radius: 24px; background: #fff; box-shadow: 0 8px 28px rgba(0, 0, 0, .22); }
    .results-close[b-kmwlqmrypu] { position: absolute; top: 13px; right: 17px; z-index: 1; width: 36px; height: 36px; border: 0; border-radius: 50%; background: #eef0f5; color: #20212a; font-size: 1.8rem; line-height: 1; }
}
/* /Components/Search/SearchResultsPanel.razor.rz.scp.css */
.results-panel[b-nf6h8v0qpd] { height: 100%; overflow-y: auto; padding: 32px; color: #20212a; }
.results-header[b-nf6h8v0qpd] { display: flex; align-items: start; justify-content: space-between; gap: 16px; margin-bottom: 24px; }
.results-header h2[b-nf6h8v0qpd], .result-card h3[b-nf6h8v0qpd], .result-card p[b-nf6h8v0qpd] { margin: 0; }
.results-eyebrow[b-nf6h8v0qpd] { margin: 0 0 5px; color: #787b8a; font-size: .78rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.results-count[b-nf6h8v0qpd] { display: grid; place-items: center; min-width: 32px; height: 32px; padding: 0 8px; border-radius: 999px; background: #20212a; color: #fff; font-weight: 700; }
.search-progress[b-nf6h8v0qpd] { margin: -12px 0 20px; color: #696d7b; font-size: .9rem; }
.search-profile[b-nf6h8v0qpd] { margin: -8px 0 20px; padding: 12px; border: 1px solid #e2e7f1; border-radius: 14px; background: #fafbff; }
.search-profile-heading[b-nf6h8v0qpd], .profile-editor-heading[b-nf6h8v0qpd], .profile-editor-actions[b-nf6h8v0qpd] { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.search-profile-heading strong[b-nf6h8v0qpd], .profile-editor-heading strong[b-nf6h8v0qpd] { font-size: .85rem; color: #31384b; }
.profile-chips[b-nf6h8v0qpd] { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 10px; }
.profile-chip[b-nf6h8v0qpd] { display: inline-flex; align-items: center; gap: 5px; padding: 5px 8px; border-radius: 999px; background: #edf1ff; color: #384a98; font-size: .78rem; font-weight: 700; }
.profile-chip small[b-nf6h8v0qpd] { color: #6672a8; font-size: .68rem; font-weight: 600; }
.profile-edit[b-nf6h8v0qpd], .profile-close[b-nf6h8v0qpd] { border: 0; background: transparent; color: #3155ba; font: inherit; font-size: .8rem; font-weight: 700; cursor: pointer; }
.profile-close[b-nf6h8v0qpd] { color: #697084; font-size: 1.25rem; line-height: 1; }
.profile-editor[b-nf6h8v0qpd] { margin: -8px 0 20px; padding: 16px; border: 1px solid #ccd5ee; border-radius: 14px; background: #fff; box-shadow: 0 10px 25px rgba(35, 47, 92, .09); }
.profile-editor-grid[b-nf6h8v0qpd] { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; margin-top: 14px; }
.profile-editor label[b-nf6h8v0qpd] { display: grid; gap: 5px; color: #586076; font-size: .72rem; font-weight: 700; }
.profile-editor input[b-nf6h8v0qpd], .profile-editor select[b-nf6h8v0qpd] { min-width: 0; width: 100%; box-sizing: border-box; padding: 8px 9px; border: 1px solid #d9deea; border-radius: 7px; background: #fff; color: #20212a; font: inherit; font-size: .86rem; }
.profile-editor-actions[b-nf6h8v0qpd] { justify-content: flex-end; margin-top: 14px; }.profile-editor-actions button[b-nf6h8v0qpd] { padding: 8px 11px; border: 1px solid #d9deea; border-radius: 7px; background: #fff; color: #333b50; font: inherit; font-size: .82rem; font-weight: 700; cursor: pointer; }.profile-editor-actions button[type="submit"][b-nf6h8v0qpd] { border-color: #0d6efd; background: #0d6efd; color: #fff; }
.results-empty[b-nf6h8v0qpd] { display: grid; min-height: 180px; place-items: center; border: 1px dashed #d9dce5; border-radius: 18px; color: #777b89; text-align: center; padding: 24px; }
.results-empty strong[b-nf6h8v0qpd] { color: #20212a; font-size: 1.05rem; }
.results-empty p[b-nf6h8v0qpd] { max-width: 400px; margin: 10px 0 0; }
.result-list[b-nf6h8v0qpd] { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 18px; }
.result-card[b-nf6h8v0qpd] { position: relative; overflow: hidden; border: 1px solid #e5e7ee; border-radius: 16px; background: #fff; box-shadow: 0 8px 22px rgba(31, 35, 51, .06); }
.result-image[b-nf6h8v0qpd] { width: 100%; height: 180px; object-fit: cover; background: #edf0f6; }
.result-image-actions[b-nf6h8v0qpd] { position: absolute; top: 10px; right: 10px; display: flex; gap: 7px; }.result-icon-button[b-nf6h8v0qpd] { display: grid; width: 34px; height: 34px; place-items: center; border: 0; border-radius: 50%; background: rgba(255,255,255,.94); color: #27324c; font-size: 1.15rem; line-height: 1; cursor: pointer; box-shadow: 0 3px 10px rgba(20,28,50,.18); }.result-icon-button:hover:not(:disabled)[b-nf6h8v0qpd] { background: #fff; transform: translateY(-1px); }.result-icon-button:disabled[b-nf6h8v0qpd] { cursor: wait; opacity: .55; }
.result-content[b-nf6h8v0qpd] { padding: 16px; }
.result-title-row[b-nf6h8v0qpd] { display: flex; justify-content: space-between; gap: 12px; }
.result-title-row h3[b-nf6h8v0qpd] { font-size: 1rem; }.result-title-row p[b-nf6h8v0qpd], .result-reasons[b-nf6h8v0qpd] { color: #696d7b; font-size: .9rem; margin-top: 5px !important; }
.result-chips[b-nf6h8v0qpd] { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 12px; }
.result-type[b-nf6h8v0qpd] { display: inline-block; padding: 4px 8px; border-radius: 999px; background: #edf1ff; color: #4556a8; font-size: .78rem; font-weight: 700; }
.result-stay[b-nf6h8v0qpd] { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 14px; padding: 10px; border-radius: 10px; background: #f5f7fa; }
.result-stay span[b-nf6h8v0qpd] { display: grid; gap: 2px; min-width: 0; }
.result-stay small[b-nf6h8v0qpd] { color: #777b89; font-size: .68rem; text-transform: uppercase; letter-spacing: .04em; }
.result-stay strong[b-nf6h8v0qpd] { color: #20212a; font-size: .8rem; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.result-link[b-nf6h8v0qpd] { display: inline-block; width: 100%; margin-top: 16px; padding: 11px 14px; border: 0; border-radius: 7px; background: #0d6efd; color: #fff; font: inherit; font-size: .9rem; font-weight: 700; text-align: center; cursor: pointer; box-shadow: 0 6px 14px rgba(13, 110, 253, .2); }.result-link:hover[b-nf6h8v0qpd] { background: #1558c0; }

@media (max-width: 900px) {
    .results-panel[b-nf6h8v0qpd] { padding: 20px 14px; }
    .result-list[b-nf6h8v0qpd] { grid-template-columns: 1fr; gap: 14px; }
    .profile-editor-grid[b-nf6h8v0qpd] { grid-template-columns: 1fr 1fr; }
    .result-card[b-nf6h8v0qpd] { margin: 0 2px; border-radius: 10px; box-shadow: 0 12px 26px rgba(15, 23, 42, .1); }
    .result-image[b-nf6h8v0qpd] { height: 220px; }
    .result-content[b-nf6h8v0qpd] { padding: 18px 16px 16px; }
    .result-title-row h3[b-nf6h8v0qpd] { font-size: 1.18rem; line-height: 1.25; }
    .result-title-row strong[b-nf6h8v0qpd] { color: #0876df; font-size: 1.12rem; white-space: nowrap; }
    .result-stay[b-nf6h8v0qpd] { margin-top: 16px; padding: 12px 10px; }
    .result-link[b-nf6h8v0qpd] { height: 44px; margin-top: 18px; }
}
/* /RagEditor/RagEditor.razor.rz.scp.css */
.rag-editor-panel[b-kq6prf64az] { display: grid; grid-template-rows: auto auto auto minmax(0, 1fr) auto; height: 100dvh; min-width: 0; overflow: hidden; border-left: 1px solid #dfe3ea; background: #f7f8fb; color: #242936; }
.editor-header[b-kq6prf64az] { display: flex; align-items: center; justify-content: space-between; padding: 16px 18px 13px; background: #fff; }
.editor-header h2[b-kq6prf64az] { margin: 2px 0 0; font-size: 1.25rem; }
.eyebrow[b-kq6prf64az] { color: #667085; font-size: .66rem; font-weight: 800; letter-spacing: .1em; }
.local-badge[b-kq6prf64az] { padding: 5px 8px; border-radius: 999px; background: #e8f7ee; color: #167647; font-size: .72rem; font-weight: 800; }
.editor-tabs[b-kq6prf64az] { display: grid; grid-template-columns: 1fr 1fr; padding: 0 14px; border-bottom: 1px solid #dfe3ea; background: #fff; }
.editor-tabs button[b-kq6prf64az] { padding: 12px; border: 0; border-bottom: 3px solid transparent; background: #fff; color: #344054; font: inherit; font-weight: 750; cursor: pointer; opacity: 1; }
.editor-tabs button span[b-kq6prf64az] { display: inline-grid; place-items: center; min-width: 19px; height: 19px; margin-left: 4px; border-radius: 999px; background: #eef1f5; color: #475467; font-size: .68rem; }
.editor-tabs button.active[b-kq6prf64az] { border-bottom-color: #0d73ff; color: #075fcf; background: #f4f8ff; }
.editor-tabs button.active span[b-kq6prf64az] { background: #0d73ff; color: #fff; }
.source-banner[b-kq6prf64az] { display: flex; align-items: center; justify-content: space-between; padding: 8px 16px; border-bottom: 1px solid #dfe3ea; background: #eef6ff; color: #344054; font-size: .74rem; }
.source-banner span[b-kq6prf64az] { font-weight: 700; }
.source-banner strong[b-kq6prf64az] { color: #075fcf; }
.editor-body[b-kq6prf64az] { min-height: 0; overflow-y: auto; padding: 16px; }
label[b-kq6prf64az] { display: grid; gap: 6px; margin-bottom: 14px; color: #475467; font-size: .78rem; font-weight: 750; }
select[b-kq6prf64az], textarea[b-kq6prf64az] { width: 100%; border: 1px solid #cfd5df; border-radius: 7px; background: #fff; color: #1f2937; font: inherit; }
select[b-kq6prf64az] { height: 38px; padding: 0 9px; }
textarea[b-kq6prf64az] { min-height: 190px; padding: 10px; resize: vertical; line-height: 1.42; font-size: .84rem; font-weight: 450; }
.content-count[b-kq6prf64az] { color: #667085; font-size: .7rem; font-weight: 650; }
select:focus[b-kq6prf64az], textarea:focus[b-kq6prf64az] { outline: 2px solid rgba(13, 115, 255, .18); border-color: #0d73ff; }
.parameter-grid[b-kq6prf64az] { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 14px; }
.parameter-grid div[b-kq6prf64az] { min-width: 0; padding: 9px; border: 1px solid #e1e5ec; border-radius: 7px; background: #fff; }
.parameter-grid .wide[b-kq6prf64az] { grid-column: 1 / -1; }
.parameter-grid span[b-kq6prf64az] { display: block; margin-bottom: 3px; color: #7a8494; font-size: .66rem; font-weight: 800; text-transform: uppercase; }
.parameter-grid strong[b-kq6prf64az], .parameter-grid small[b-kq6prf64az] { display: block; overflow-wrap: anywhere; }
.parameter-grid strong[b-kq6prf64az] { font-size: .81rem; }
.parameter-grid small[b-kq6prf64az] { margin-top: 3px; color: #7a8494; font-size: .67rem; }
.target-list[b-kq6prf64az] { display: grid; gap: 6px; max-height: 180px; margin: -3px 0 14px; padding: 9px; overflow-y: auto; border: 1px solid #e1e5ec; border-radius: 7px; background: #fff; }
.target-list > span[b-kq6prf64az] { color: #7a8494; font-size: .66rem; font-weight: 800; text-transform: uppercase; }
.target-list div[b-kq6prf64az] { padding-top: 6px; border-top: 1px solid #eef1f5; }
.target-list strong[b-kq6prf64az], .target-list small[b-kq6prf64az] { display: block; overflow-wrap: anywhere; }
.target-list strong[b-kq6prf64az] { font-size: .78rem; }
.target-list small[b-kq6prf64az] { margin-top: 2px; color: #7a8494; font-size: .67rem; }
.button-row[b-kq6prf64az] { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.button-row button[b-kq6prf64az] { min-height: 42px; padding: 8px; border: 1px solid #0d73ff; border-radius: 7px; background: #fff; color: #075fcf; font-weight: 800; cursor: pointer; }
.chunk-navigation[b-kq6prf64az] { display: grid; grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr); align-items: center; gap: 6px; white-space: nowrap; }
.chunk-navigation button[b-kq6prf64az] { min-height: 32px; padding: 5px 8px; border: 1px solid #0d73ff; border-radius: 7px; background: #fff; color: #075fcf; font-weight: 800; cursor: pointer; }
.chunk-navigation button:disabled[b-kq6prf64az] { cursor: wait; opacity: .55; }
.button-row button.primary[b-kq6prf64az] { background: #0d73ff; color: #fff; }
.button-row button.model-button[b-kq6prf64az] { border-color: #6941c6; background: #6941c6; color: #fff; }
.button-row button.model-button:hover[b-kq6prf64az] { background: #53389e; }
.button-row button:disabled[b-kq6prf64az] { cursor: wait; opacity: .55; }
.empty-state[b-kq6prf64az] { margin: 8px 0; padding: 14px; border: 1px dashed #cbd2dd; border-radius: 8px; color: #667085; background: #fff; line-height: 1.5; }
.source-meta[b-kq6prf64az], .file-hint[b-kq6prf64az] { margin: -5px 0 12px; color: #667085; font-size: .72rem; overflow-wrap: anywhere; }
.file-hint code[b-kq6prf64az] { color: #344054; }
.status[b-kq6prf64az] { padding: 11px 15px; border-top: 1px solid #dfe3ea; font-size: .76rem; font-weight: 700; overflow-wrap: anywhere; }
.status.success[b-kq6prf64az] { background: #ecfdf3; color: #067647; }
.status.error[b-kq6prf64az] { background: #fef3f2; color: #b42318; }

@media (max-width: 1200px) {
    .rag-editor-panel[b-kq6prf64az] { display: none; }
}
