/* _content/Web/Components/Layout/LoadingSpinner.razor.rz.scp.css */
/* Used under CC0 license */

.lds-ellipsis[b-qekgpevt4w] {
    color: #666;
    animation: fade-in-b-qekgpevt4w 1s;
}

@keyframes fade-in-b-qekgpevt4w {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

    .lds-ellipsis[b-qekgpevt4w],
    .lds-ellipsis div[b-qekgpevt4w] {
        box-sizing: border-box;
    }

.lds-ellipsis[b-qekgpevt4w] {
    margin: auto;
    display: block;
    position: relative;
    width: 80px;
    height: 80px;
}

    .lds-ellipsis div[b-qekgpevt4w] {
        position: absolute;
        top: 33.33333px;
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: currentColor;
        animation-timing-function: cubic-bezier(0, 1, 1, 0);
    }

        .lds-ellipsis div:nth-child(1)[b-qekgpevt4w] {
            left: 8px;
            animation: lds-ellipsis1-b-qekgpevt4w 0.6s infinite;
        }

        .lds-ellipsis div:nth-child(2)[b-qekgpevt4w] {
            left: 8px;
            animation: lds-ellipsis2-b-qekgpevt4w 0.6s infinite;
        }

        .lds-ellipsis div:nth-child(3)[b-qekgpevt4w] {
            left: 32px;
            animation: lds-ellipsis2-b-qekgpevt4w 0.6s infinite;
        }

        .lds-ellipsis div:nth-child(4)[b-qekgpevt4w] {
            left: 56px;
            animation: lds-ellipsis3-b-qekgpevt4w 0.6s infinite;
        }

@keyframes lds-ellipsis1-b-qekgpevt4w {
    0% {
        transform: scale(0);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes lds-ellipsis3-b-qekgpevt4w {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(0);
    }
}

@keyframes lds-ellipsis2-b-qekgpevt4w {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(24px, 0);
    }
}
/* _content/Web/Components/Layout/MainLayout.razor.rz.scp.css */
#blazor-error-ui[b-739djkm78g] {
    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-739djkm78g] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* _content/Web/Components/Pages/Chat/Chat.razor.rz.scp.css */
.chat-container[b-yibxz6i9wo] {
    position: sticky; 
    bottom: 0; 
    padding-left: 1.5rem;
    padding-right: 1.5rem; 
    padding-top: 0.75rem; 
    padding-bottom: 1.5rem; 
    border-top-width: 1px; 
    background-color: #F3F4F6; 
    border-color: #E5E7EB;
}
/* _content/Web/Components/Pages/Chat/ChatInput.razor.rz.scp.css */
.input-box[b-qqlopzsx0v] {
    display: flex; 
    flex-direction: column; 
    background: white;
    border: 1px solid rgb(229, 231, 235);
    border-radius: 8px;
    padding: 0.5rem 0.75rem;
    margin-top: 0.75rem; 
}

    .input-box:focus-within[b-qqlopzsx0v] {
        outline: 2px solid #4152d5;
    }

textarea[b-qqlopzsx0v] {
    resize: none;
    border: none;
    outline: none;
    flex-grow: 1;
}

    textarea:placeholder-shown + .tools[b-qqlopzsx0v] {
        --send-button-color: #aaa;
    }

.tools[b-qqlopzsx0v] {
    display: flex; 
    margin-top: 1rem; 
    align-items: center;
}

.tool-icon[b-qqlopzsx0v] {
    width: 1.25rem;
    height: 1.25rem;
}

.send-button[b-qqlopzsx0v] {
    color: var(--send-button-color);
    margin-left: auto;
}

    .send-button:hover[b-qqlopzsx0v] {
        color: black;
    }

.attach[b-qqlopzsx0v] {
    background-color: white;
    border-style: dashed;
    color: #888;
    border-color: #888;
    padding: 3px 8px;
}

    .attach:hover[b-qqlopzsx0v] {
        background-color: #f0f0f0;
        color: black;
    }
/* _content/Web/Components/Pages/Chat/ChatMessageItem.razor.rz.scp.css */
.user-message[b-iek5ndemh1] {
    background: rgb(182 215 232);
    align-self: flex-end;
    min-width: 25%;
    max-width: calc(100% - 5rem);
    padding: 0.5rem 1.25rem;
    border-radius: 0.25rem; 
    color: #1F2937; 
    white-space: pre-wrap; 
}

.assistant-message[b-iek5ndemh1], .assistant-search[b-iek5ndemh1] {
    display: grid;
    grid-template-rows: min-content;
    grid-template-columns: 2rem minmax(0, 1fr);
    gap: 0.25rem; 
}

.assistant-message-header[b-iek5ndemh1] {
    font-weight: 600;
}

.assistant-message-text[b-iek5ndemh1] {
    grid-column-start: 2;
}

.assistant-message-icon[b-iek5ndemh1] {
    display: flex; 
    justify-content: center; 
    align-items: center; 
    border-radius: 9999px; 
    width: 1.5rem; 
    height: 1.5rem; 
    color: #ffffff; 
    background: #9b72ce;
}

    .assistant-message-icon svg[b-iek5ndemh1] {
        width: 1rem; 
        height: 1rem; 
    }

.assistant-search[b-iek5ndemh1] {
    font-size: 0.875rem;
    line-height: 1.25rem; 
}

.assistant-search-icon[b-iek5ndemh1] {
    display: flex; 
    justify-content: center; 
    align-items: center; 
    width: 1.5rem; 
    height: 1.5rem; 
}

    .assistant-search-icon svg[b-iek5ndemh1] {
        width: 1rem; 
        height: 1rem; 
    }

.assistant-search-content[b-iek5ndemh1] {
    align-content: center;
}

.assistant-search-phrase[b-iek5ndemh1] {
    font-weight: 600;
}

.system-message[b-iek5ndemh1] {
    white-space: pre-wrap;
}

/* Default styling for markdown-formatted assistant messages */
[b-iek5ndemh1] ul {
    list-style-type: disc;
    margin-left: 1.5rem;
}

[b-iek5ndemh1] ol {
    list-style-type: decimal;
    margin-left: 1.5rem;
}

[b-iek5ndemh1] li {
    margin: 0.5rem 0;
}

[b-iek5ndemh1] strong {
    font-weight: 600;
}

[b-iek5ndemh1] h3 {
    margin: 1rem 0;
    font-weight: 600;
}

[b-iek5ndemh1] p + p {
    margin-top: 1rem;
}

[b-iek5ndemh1] table {
    margin: 1rem 0;
}

[b-iek5ndemh1] th {
    text-align: left;
    border-bottom: 1px solid silver;
}

[b-iek5ndemh1] th, [b-iek5ndemh1] td {
    padding: 0.1rem 0.5rem;
}

[b-iek5ndemh1] th, [b-iek5ndemh1] tr:nth-child(even) {
    background-color: rgba(0, 0, 0, 0.05);
}

[b-iek5ndemh1] pre > code {
    background-color: white;
    display: block;
    padding: 0.5rem 1rem;
    margin: 1rem 0;
    overflow-x: auto;
}
/* _content/Web/Components/Pages/Chat/ChatMessageList.razor.rz.scp.css */
.message-list-container[b-87k5ccl3zo] {
    margin: 2rem 1.5rem;
    flex-grow: 1;
}

.message-list[b-87k5ccl3zo] {
    display: flex; 
    flex-direction: column; 
    gap: 1.25rem; 
}

.no-messages[b-87k5ccl3zo] {
    text-align: center;
    font-size: 1.25rem;
    color: #999;
    margin-top: calc(40vh - 18rem);
}

chat-messages[b-87k5ccl3zo] >  div:last-of-type {
    /* Adds some vertical buffer to so that suggestions don't overlap the output when they appear */
    margin-bottom: 2rem;
}
/* _content/Web/Components/Pages/Chat/ChatSuggestions.razor.rz.scp.css */
.suggestions[b-fm0kf4s03b] {
    text-align: right;
    white-space: nowrap;
    gap: 0.5rem;
    justify-content: flex-end;
    flex-wrap: wrap;
    display: flex;
    margin-bottom: 0.75rem;
}
