/* /Components/DocumentPanel.razor.rz.scp.css */
/* Document Panel */
.document-panel[b-4eirckk0dg] {
    background-color: #ffffff;
    border-left: 1px solid #e5e7eb;
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    animation: slideInRight-b-4eirckk0dg 0.3s ease-out;
}

@keyframes slideInRight-b-4eirckk0dg {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.document-panel-header[b-4eirckk0dg] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #e5e7eb;
    background-color: #f9fafb;
    flex-shrink: 0;
}

.document-panel-header h5[b-4eirckk0dg] {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    color: #111827;
}

.close-button[b-4eirckk0dg] {
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    color: #6b7280;
    border-radius: 0.375rem;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-button:hover[b-4eirckk0dg] {
    background-color: #e5e7eb;
    color: #111827;
}

.close-button svg[b-4eirckk0dg] {
    width: 1.25rem;
    height: 1.25rem;
}

.document-panel-content[b-4eirckk0dg] {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 1.5rem;
    min-height: 0;
}

.document-info[b-4eirckk0dg] {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background-color: #f9fafb;
    border-radius: 0.5rem;
    border: 1px solid #e5e7eb;
}

.document-icon[b-4eirckk0dg] {
    width: 2.5rem;
    height: 2.5rem;
    flex-shrink: 0;
    color: #3b82f6;
    display: flex;
    align-items: center;
    justify-content: center;
}

.document-icon svg[b-4eirckk0dg] {
    width: 100%;
    height: 100%;
}

.document-title[b-4eirckk0dg] {
    flex: 1;
    min-width: 0;
}

.document-title strong[b-4eirckk0dg] {
    display: block;
    color: #111827;
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
    word-break: break-word;
}

.document-path[b-4eirckk0dg] {
    font-size: 0.8rem;
    color: #6b7280;
    word-break: break-all;
}

.document-actions[b-4eirckk0dg] {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.document-action-btn[b-4eirckk0dg] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1rem;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    font-weight: 500;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    font-family: inherit;
    flex: 1;
    min-width: 120px;
    justify-content: center;
}

.document-action-btn svg[b-4eirckk0dg] {
    width: 1rem;
    height: 1rem;
    flex-shrink: 0;
}

.document-action-btn-primary[b-4eirckk0dg] {
    background-color: #3b82f6;
    color: #ffffff;
    border-color: #3b82f6;
}

.document-action-btn-primary:hover[b-4eirckk0dg] {
    background-color: #2563eb;
    border-color: #2563eb;
}

.document-action-btn-secondary[b-4eirckk0dg] {
    background-color: #ffffff;
    color: #374151;
    border-color: #d1d5db;
}

.document-action-btn-secondary:hover[b-4eirckk0dg] {
    background-color: #f3f4f6;
    border-color: #9ca3af;
}

.document-content-section h6[b-4eirckk0dg] {
    margin: 0 0 0.75rem 0;
    font-size: 0.875rem;
    font-weight: 600;
    color: #374151;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.document-content[b-4eirckk0dg] {
    background-color: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    padding: 1rem;
    font-size: 0.875rem;
    line-height: 1.6;
    color: #374151;
    white-space: pre-wrap;
    word-break: break-word;
    max-height: 500px;
    overflow-y: auto;
}

.document-empty[b-4eirckk0dg] {
    padding: 2rem;
    text-align: center;
    color: #9ca3af;
    font-size: 0.875rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .document-panel[b-4eirckk0dg] {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: 90%;
        max-width: 450px;
        z-index: 1000;
        box-shadow: -2px 0 8px rgba(0, 0, 0, 0.15);
    }
}
/* /Components/DocumentViewerModal.razor.rz.scp.css */
/* Modal Backdrop */
.modal-backdrop[b-kjn42keg16] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1040;
    animation: fadeIn-b-kjn42keg16 0.2s ease;
}

@keyframes fadeIn-b-kjn42keg16 {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Modal Dialog */
.modal-dialog[b-kjn42keg16] {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1050;
    width: 90%;
    max-width: 1200px;
    max-height: 90vh;
    animation: slideIn-b-kjn42keg16 0.3s ease;
}

@keyframes slideIn-b-kjn42keg16 {
    from {
        opacity: 0;
        transform: translate(-50%, -48%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

/* Modal Content */
.modal-content[b-kjn42keg16] {
    background-color: #ffffff;
    border-radius: 0.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    height: 90vh;
    max-height: 900px;
}

/* Modal Header */
.modal-header[b-kjn42keg16] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid #e5e7eb;
    background-color: #f9fafb;
    border-radius: 0.5rem 0.5rem 0 0;
    flex-shrink: 0;
}

.modal-title[b-kjn42keg16] {
    margin: 0;
    font-size: 1.125rem;
    font-weight: 600;
    color: #111827;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 90%;
}

.close-button[b-kjn42keg16] {
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    color: #6b7280;
    border-radius: 0.375rem;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.close-button:hover[b-kjn42keg16] {
    background-color: #e5e7eb;
    color: #111827;
}

.close-button svg[b-kjn42keg16] {
    width: 1.25rem;
    height: 1.25rem;
}

/* Modal Body */
.modal-body[b-kjn42keg16] {
    flex: 1;
    overflow: hidden;
    padding: 0;
    position: relative;
    min-height: 0;
}

/* Document Viewer */
.document-viewer[b-kjn42keg16] {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* Loading Container */
.loading-container[b-kjn42keg16] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 3rem;
    color: #6b7280;
}

.spinner[b-kjn42keg16] {
    width: 3rem;
    height: 3rem;
    border: 4px solid #e5e7eb;
    border-top-color: #3b82f6;
    border-radius: 50%;
    animation: spin-b-kjn42keg16 0.8s linear infinite;
    margin-bottom: 1rem;
}

@keyframes spin-b-kjn42keg16 {
    to {
        transform: rotate(360deg);
    }
}

.loading-container p[b-kjn42keg16] {
    margin: 0;
    font-size: 0.95rem;
}

/* Error Container */
.error-container[b-kjn42keg16] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 3rem;
    color: #dc2626;
    text-align: center;
}

.error-container svg[b-kjn42keg16] {
    width: 3rem;
    height: 3rem;
    margin-bottom: 1rem;
    color: #ef4444;
}

.error-container p[b-kjn42keg16] {
    margin: 0 0 1.5rem 0;
    font-size: 0.95rem;
    color: #374151;
}

.download-link[b-kjn42keg16] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    background-color: #3b82f6;
    color: #ffffff;
    text-decoration: none;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    font-weight: 500;
    transition: background-color 0.2s ease;
}

.download-link:hover[b-kjn42keg16] {
    background-color: #2563eb;
}

/* Document Preview Unavailable */
.document-preview-unavailable[b-kjn42keg16] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 3rem;
    text-align: center;
}

.document-icon-large[b-kjn42keg16] {
    font-size: 4rem;
    line-height: 1;
    margin-bottom: 1.5rem;
}

.document-preview-unavailable h6[b-kjn42keg16] {
    margin: 0 0 0.5rem 0;
    font-size: 1.125rem;
    font-weight: 600;
    color: #111827;
    word-break: break-word;
}

.document-type[b-kjn42keg16] {
    margin: 0 0 2rem 0;
    font-size: 0.875rem;
    color: #6b7280;
    font-weight: 500;
}

.preview-message[b-kjn42keg16] {
    margin: 0 0 0.5rem 0;
    font-size: 0.95rem;
    color: #374151;
}

.download-instruction[b-kjn42keg16] {
    margin: 0;
    font-size: 0.875rem;
    color: #6b7280;
}

/* Modal Footer */
.modal-footer[b-kjn42keg16] {
    display: flex;
    justify-content: flex-end;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    border-top: 1px solid #e5e7eb;
    background-color: #f9fafb;
    border-radius: 0 0 0.5rem 0.5rem;
    flex-shrink: 0;
}

.btn[b-kjn42keg16] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    font-weight: 500;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
}

.btn svg[b-kjn42keg16] {
    width: 1rem;
    height: 1rem;
}

.btn-primary[b-kjn42keg16] {
    background-color: #3b82f6;
    color: #ffffff;
}

.btn-primary:hover[b-kjn42keg16] {
    background-color: #2563eb;
}

.btn-secondary[b-kjn42keg16] {
    background-color: #ffffff;
    color: #374151;
    border-color: #d1d5db;
}

.btn-secondary:hover[b-kjn42keg16] {
    background-color: #f3f4f6;
    border-color: #9ca3af;
}

/* Responsive */
@media (max-width: 768px) {
    .modal-dialog[b-kjn42keg16] {
        width: 95%;
        max-width: none;
    }

    .modal-content[b-kjn42keg16] {
        height: 95vh;
    }

    .modal-header[b-kjn42keg16] {
        padding: 1rem;
    }

    .modal-title[b-kjn42keg16] {
        font-size: 1rem;
    }

    .modal-footer[b-kjn42keg16] {
        padding: 0.75rem 1rem;
        flex-wrap: wrap;
    }

    .btn[b-kjn42keg16] {
        flex: 1;
        justify-content: center;
    }
}
/* /Components/DomainSelector.razor.rz.scp.css */
.domain-selector[b-iyb0qlgcjo] {
    margin-bottom: 0;
    width: 100%;
    height: auto;
    min-height: auto;
}

.domain-selector .form-group[b-iyb0qlgcjo] {
    margin-bottom: 0;
    height: auto;
    min-height: auto;
}

.domain-selector .form-control[b-iyb0qlgcjo] {
    border-radius: 0.375rem;
    border: 1px solid #ced4da;
    padding: 0.5rem 0.75rem;
    height: auto !important;
    line-height: normal;
}

.domain-selector .form-control:focus[b-iyb0qlgcjo] {
    border-color: #80bdff;
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(0,123,255,.25);
}

.domain-selector optgroup[b-iyb0qlgcjo] {
    font-weight: 600;
    color: #495057;
    font-style: normal;
}

.domain-selector .alert[b-iyb0qlgcjo] {
    border-radius: 0.375rem;
    padding: 1rem;
}

.domain-select[b-iyb0qlgcjo] {
    min-width: 350px;
    max-width: 100%;
    width: auto;
    height: auto !important;
    min-height: auto !important;
}

.domain-selector label[b-iyb0qlgcjo] {
    white-space: nowrap;
    margin-bottom: 0;
}

/* Add some padding for better readability */
.domain-select option[b-iyb0qlgcjo] {
    padding: 4px 8px;
}
/* /Components/MarkdownRenderer.razor.rz.scp.css */
/* Code blocks */
[b-5on2pn8wdq] pre {
    background: #1e1e1e;
    border-radius: 0.375rem;
    margin: 1rem 0;
    overflow: hidden;
}

[b-5on2pn8wdq] pre > code {
    display: block;
    padding: 1rem;
    overflow-x: auto;
    background: #1e1e1e;
    color: #d4d4d4;
    font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
    font-size: 0.875rem;
    line-height: 1.5;
}

/* Inline code */
[b-5on2pn8wdq] code:not(pre code) {
    background: rgba(0, 0, 0, 0.05);
    padding: 0.125rem 0.375rem;
    border-radius: 0.25rem;
    font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
    font-size: 0.875em;
    color: #e11d48;
}

/* Headings */
[b-5on2pn8wdq] h1 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 1.5rem 0 0.75rem;
    line-height: 1.3;
}

[b-5on2pn8wdq] h2 {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 1.25rem 0 0.625rem;
    line-height: 1.3;
}

[b-5on2pn8wdq] h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin: 1rem 0 0.5rem;
    line-height: 1.3;
}

[b-5on2pn8wdq] h4, [b-5on2pn8wdq] h5, [b-5on2pn8wdq] h6 {
    font-weight: 600;
    margin: 0.75rem 0 0.5rem;
    line-height: 1.3;
}

/* Paragraphs */
[b-5on2pn8wdq] p {
    margin: 0.75rem 0;
    line-height: 1.6;
}

[b-5on2pn8wdq] p:first-child {
    margin-top: 0;
}

[b-5on2pn8wdq] p:last-child {
    margin-bottom: 0;
}

/* Lists */
[b-5on2pn8wdq] ul, [b-5on2pn8wdq] ol {
    margin: 0.75rem 0;
    padding-left: 1.5rem;
}

[b-5on2pn8wdq] ul {
    list-style-type: disc;
}

[b-5on2pn8wdq] ol {
    list-style-type: decimal;
}

[b-5on2pn8wdq] li {
    margin: 0.25rem 0;
    line-height: 1.6;
}

[b-5on2pn8wdq] li > p {
    margin: 0.25rem 0;
}

/* Nested lists */
[b-5on2pn8wdq] ul ul, [b-5on2pn8wdq] ol ul {
    list-style-type: circle;
}

[b-5on2pn8wdq] ul ul ul, [b-5on2pn8wdq] ol ul ul, [b-5on2pn8wdq] ol ol ul {
    list-style-type: square;
}

/* Blockquotes */
[b-5on2pn8wdq] blockquote {
    margin: 1rem 0;
    padding-left: 1rem;
    border-left: 3px solid #e5e7eb;
    color: #6b7280;
    font-style: italic;
}

[b-5on2pn8wdq] blockquote > p {
    margin: 0.5rem 0;
}

/* Tables */
[b-5on2pn8wdq] table {
    border-collapse: collapse;
    width: 100%;
    margin: 1rem 0;
    font-size: 0.875rem;
}

[b-5on2pn8wdq] th {
    background-color: #f3f4f6;
    font-weight: 600;
    text-align: left;
    border: 1px solid #e5e7eb;
    padding: 0.5rem 0.75rem;
}

[b-5on2pn8wdq] td {
    border: 1px solid #e5e7eb;
    padding: 0.5rem 0.75rem;
}

[b-5on2pn8wdq] tr:nth-child(even) {
    background-color: #f9fafb;
}

/* Horizontal rule */
[b-5on2pn8wdq] hr {
    margin: 1.5rem 0;
    border: none;
    border-top: 1px solid #e5e7eb;
}

/* Links */
[b-5on2pn8wdq] a {
    color: #2563eb;
    text-decoration: underline;
}

[b-5on2pn8wdq] a:hover {
    color: #1d4ed8;
}

/* Strong and emphasis */
[b-5on2pn8wdq] strong {
    font-weight: 600;
}

[b-5on2pn8wdq] em {
    font-style: italic;
}

/* Task lists */
[b-5on2pn8wdq] ul.contains-task-list {
    list-style-type: none;
    padding-left: 0;
}

[b-5on2pn8wdq] .task-list-item {
    display: flex;
    align-items: flex-start;
}

[b-5on2pn8wdq] .task-list-item input[type="checkbox"] {
    margin-right: 0.5rem;
    margin-top: 0.25rem;
}
/* /Layout/LoadingSpinner.razor.rz.scp.css */
/* Used under CC0 license */

.lds-ellipsis[b-nky09wgd1s] {
    color: #666;
    animation: fade-in-b-nky09wgd1s 1s;
}

@keyframes fade-in-b-nky09wgd1s {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

    .lds-ellipsis[b-nky09wgd1s],
    .lds-ellipsis div[b-nky09wgd1s] {
        box-sizing: border-box;
    }

.lds-ellipsis[b-nky09wgd1s] {
    margin: auto;
    display: block;
    position: relative;
    width: 80px;
    height: 80px;
}

    .lds-ellipsis div[b-nky09wgd1s] {
        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-nky09wgd1s] {
            left: 8px;
            animation: lds-ellipsis1-b-nky09wgd1s 0.6s infinite;
        }

        .lds-ellipsis div:nth-child(2)[b-nky09wgd1s] {
            left: 8px;
            animation: lds-ellipsis2-b-nky09wgd1s 0.6s infinite;
        }

        .lds-ellipsis div:nth-child(3)[b-nky09wgd1s] {
            left: 32px;
            animation: lds-ellipsis2-b-nky09wgd1s 0.6s infinite;
        }

        .lds-ellipsis div:nth-child(4)[b-nky09wgd1s] {
            left: 56px;
            animation: lds-ellipsis3-b-nky09wgd1s 0.6s infinite;
        }

@keyframes lds-ellipsis1-b-nky09wgd1s {
    0% {
        transform: scale(0);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes lds-ellipsis3-b-nky09wgd1s {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(0);
    }
}

@keyframes lds-ellipsis2-b-nky09wgd1s {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(24px, 0);
    }
}
/* /Layout/MainLayout.razor.rz.scp.css */
.page[b-xcpwuavgud] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-xcpwuavgud] {
    flex: 1;
}

.sidebar[b-xcpwuavgud] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-xcpwuavgud] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-xcpwuavgud]  a, .top-row[b-xcpwuavgud]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

    .top-row[b-xcpwuavgud]  a:hover, .top-row[b-xcpwuavgud]  .btn-link:hover {
        text-decoration: underline;
    }

    .top-row[b-xcpwuavgud]  a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row[b-xcpwuavgud] {
        justify-content: space-between;
    }

    .top-row[b-xcpwuavgud]  a, .top-row[b-xcpwuavgud]  .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-xcpwuavgud] {
        flex-direction: row;
    }

    .sidebar[b-xcpwuavgud] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-xcpwuavgud] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-xcpwuavgud]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-xcpwuavgud], article[b-xcpwuavgud] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}
/* /Layout/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-df1h9pai1g] {
    background-color: rgba(255, 255, 255, 0.1);
}

.top-row[b-df1h9pai1g] {
    height: 56px;
    background-color: rgba(0,0,0,0.4);
}

.navbar-brand[b-df1h9pai1g] {
    font-size: 1.1rem;
    display: flex;
    align-items: center;
}

.navbar-logo[b-df1h9pai1g] {
    height: 2.5rem;
    width: auto;
    max-width: 200px;
}

.bi[b-df1h9pai1g] {
    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-df1h9pai1g] {
    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-df1h9pai1g] {
    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-df1h9pai1g] {
    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");
}

.bi-chat-dots-fill-nav-menu[b-df1h9pai1g] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-chat-dots-fill' viewBox='0 0 16 16'%3E%3Cpath d='M16 8c0 3.866-3.582 7-8 7a9 9 0 0 1-2.347-.306c-.584.296-1.925.864-4.181 1.234-.2.032-.352-.176-.273-.362.354-.836.674-1.95.77-2.966C.744 11.37 0 9.76 0 8c0-3.866 3.582-7 8-7s8 3.134 8 7M5 8a1 1 0 1 0-2 0 1 1 0 0 0 2 0m4 0a1 1 0 1 0-2 0 1 1 0 0 0 2 0m3 1a1 1 0 1 0 0-2 1 1 0 0 0 0 2'/%3E%3C/svg%3E");
}

.bi-search-nav-menu[b-df1h9pai1g] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-search' viewBox='0 0 16 16'%3E%3Cpath d='M11.742 10.344a6.5 6.5 0 1 0-1.397 1.398h-.001q.044.06.098.115l3.85 3.85a1 1 0 0 0 1.415-1.414l-3.85-3.85a1 1 0 0 0-.115-.1zM12 6.5a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0'/%3E%3C/svg%3E");
}

.bi-gear-fill-nav-menu[b-df1h9pai1g] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-gear-fill' viewBox='0 0 16 16'%3E%3Cpath d='M9.405 1.05c-.413-1.4-2.397-1.4-2.81 0l-.1.34a1.464 1.464 0 0 1-2.105.872l-.31-.17c-1.283-.698-2.686.705-1.987 1.987l.169.311c.446.82.023 1.841-.872 2.105l-.34.1c-1.4.413-1.4 2.397 0 2.81l.34.1a1.464 1.464 0 0 1 .872 2.105l-.17.31c-.698 1.283.705 2.686 1.987 1.987l.311-.169a1.464 1.464 0 0 1 2.105.872l.1.34c.413 1.4 2.397 1.4 2.81 0l.1-.34a1.464 1.464 0 0 1 2.105-.872l.31.17c1.283.698 2.686-.705 1.987-1.987l-.169-.311a1.464 1.464 0 0 1 .872-2.105l.34-.1c1.4-.413 1.4-2.397 0-2.81l-.34-.1a1.464 1.464 0 0 1-.872-2.105l.17-.31c.698-1.283-.705-2.686-1.987-1.987l-.311.169a1.464 1.464 0 0 1-2.105-.872zM8 10.93a2.929 2.929 0 1 1 0-5.86 2.929 2.929 0 0 1 0 5.858z'/%3E%3C/svg%3E");
}

.bi-person-circle[b-df1h9pai1g] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-person-circle' viewBox='0 0 16 16'%3E%3Cpath d='M11 6a3 3 0 1 1-6 0 3 3 0 0 1 6 0'/%3E%3Cpath fill-rule='evenodd' d='M0 8a8 8 0 1 1 16 0A8 8 0 0 1 0 8m8-7a7 7 0 0 0-5.468 11.37C3.242 11.226 4.805 10 8 10s4.757 1.225 5.468 2.37A7 7 0 0 0 8 1'/%3E%3C/svg%3E");
}

.bi-box-arrow-right[b-df1h9pai1g] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-box-arrow-right' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M10 12.5a.5.5 0 0 1-.5.5h-8a.5.5 0 0 1-.5-.5v-9a.5.5 0 0 1 .5-.5h8a.5.5 0 0 1 .5.5v2a.5.5 0 0 0 1 0v-2A1.5 1.5 0 0 0 9.5 2h-8A1.5 1.5 0 0 0 0 3.5v9A1.5 1.5 0 0 0 1.5 14h8a1.5 1.5 0 0 0 1.5-1.5v-2a.5.5 0 0 0-1 0z'/%3E%3Cpath fill-rule='evenodd' d='M15.854 8.354a.5.5 0 0 0 0-.708l-3-3a.5.5 0 0 0-.708.708L14.293 7.5H5.5a.5.5 0 0 0 0 1h8.793l-2.147 2.146a.5.5 0 0 0 .708.708z'/%3E%3C/svg%3E");
}

.nav-item[b-df1h9pai1g] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-df1h9pai1g] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-df1h9pai1g] {
        padding-bottom: 1rem;
    }

    .nav-item[b-df1h9pai1g]  a {
        color: #d7d7d7;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
    }

.nav-item[b-df1h9pai1g]  a.active {
    background-color: rgba(255,255,255,0.37);
    color: white;
}

.nav-item[b-df1h9pai1g]  a:hover {
    background-color: rgba(255,255,255,0.1);
    color: white;
}

.user-info[b-df1h9pai1g] {
    color: #d7d7d7;
    height: 3rem;
    display: flex;
    align-items: center;
    padding: 0 1rem;
    font-weight: 500;
    cursor: default;
}

.btn-logout[b-df1h9pai1g] {
    width: 100%;
    background: none;
    border: none;
    color: #d7d7d7;
    border-radius: 4px;
    height: 3rem;
    display: flex;
    align-items: center;
    line-height: 3rem;
    cursor: pointer;
    padding: 0 1rem;
    text-align: left;
    transition: background-color 0.2s;
}

.btn-logout:hover[b-df1h9pai1g] {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
}

.nav-scrollable[b-df1h9pai1g] {
    display: flex;
    flex-direction: column;
    height: calc(100vh - 3.5rem);
}

.nav-scrollable nav[b-df1h9pai1g] {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
}

.mt-auto[b-df1h9pai1g] {
    margin-top: auto !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 0.5rem !important;
}

@media (min-width: 641px) {
    .navbar-toggler[b-df1h9pai1g] {
        display: none;
    }

    .collapse[b-df1h9pai1g] {
        /* Never collapse the sidebar for wide screens */
        display: block;
    }

    .nav-scrollable[b-df1h9pai1g] {
        /* Allow sidebar to scroll for tall menus */
        overflow-y: auto;
    }
}

@media (max-width: 640px) {
    .nav-scrollable[b-df1h9pai1g] {
        height: auto;
        max-height: calc(100vh - 3.5rem);
    }
}
/* /Pages/Admin/Index.razor.rz.scp.css */
.admin-page[b-frrhf07k5e] {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.admin-header[b-frrhf07k5e] {
    margin-bottom: 3rem;
}

    .admin-header h1[b-frrhf07k5e] {
        font-size: 2.5rem;
        font-weight: 600;
        color: #333;
        margin-bottom: 0.5rem;
    }

    .admin-header p[b-frrhf07k5e] {
        font-size: 1.1rem;
    }

.admin-cards[b-frrhf07k5e] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.admin-card[b-frrhf07k5e] {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

    .admin-card:hover[b-frrhf07k5e] {
        border-color: #667eea;
        box-shadow: 0 4px 12px rgba(102, 126, 234, 0.15);
        transform: translateY(-2px);
        text-decoration: none;
    }

.admin-card-icon[b-frrhf07k5e] {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    color: white;
    font-size: 2rem;
}

.admin-card-content[b-frrhf07k5e] {
    flex: 1;
    min-width: 0;
}

    .admin-card-content h3[b-frrhf07k5e] {
        font-size: 1.25rem;
        font-weight: 600;
        color: #333;
        margin-bottom: 0.5rem;
    }

    .admin-card-content p[b-frrhf07k5e] {
        font-size: 0.95rem;
        color: #666;
        margin: 0;
        line-height: 1.4;
    }

.admin-card-arrow[b-frrhf07k5e] {
    flex-shrink: 0;
    font-size: 1.5rem;
    color: #999;
    transition: transform 0.3s ease;
}

.admin-card:hover .admin-card-arrow[b-frrhf07k5e] {
    transform: translateX(4px);
    color: #667eea;
}

@media (max-width: 768px) {
    .admin-page[b-frrhf07k5e] {
        padding: 1rem;
    }

    .admin-header h1[b-frrhf07k5e] {
        font-size: 2rem;
    }

    .admin-cards[b-frrhf07k5e] {
        grid-template-columns: 1fr;
    }

    .admin-card[b-frrhf07k5e] {
        padding: 1.5rem;
    }
}
/* /Pages/Admin/Indexers.razor.rz.scp.css */
.indexer-controls[b-zvea2is2w5] {
    margin-bottom: 2rem;
}

.indexer-details[b-zvea2is2w5] {
    animation: fadeIn-b-zvea2is2w5 0.3s ease-in;
}

@keyframes fadeIn-b-zvea2is2w5 {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.info-item[b-zvea2is2w5] {
    padding: 0.75rem;
    background-color: #f8f9fa;
    border-radius: 0.375rem;
    border-left: 3px solid #0d6efd;
}

.info-item label[b-zvea2is2w5] {
    display: block;
    font-weight: 600;
    color: #6c757d;
    margin-bottom: 0.25rem;
    font-size: 0.875rem;
}

.info-item span[b-zvea2is2w5] {
    display: block;
    color: #212529;
    font-size: 1rem;
}

.error-list[b-zvea2is2w5],
.warning-list[b-zvea2is2w5] {
    max-height: 400px;
    overflow-y: auto;
}

.error-list .alert[b-zvea2is2w5],
.warning-list .alert[b-zvea2is2w5] {
    font-size: 0.875rem;
}

.loading-container[b-zvea2is2w5] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 0;
}

.back-link[b-zvea2is2w5] {
    text-decoration: none;
    color: inherit;
    margin-right: 0.5rem;
    transition: transform 0.2s;
}

.back-link:hover[b-zvea2is2w5] {
    transform: translateX(-4px);
}

.table th[b-zvea2is2w5] {
    font-weight: 600;
    background-color: #f8f9fa;
    border-top: none;
}

.table-hover tbody tr:hover[b-zvea2is2w5] {
    background-color: #f1f3f5;
    cursor: pointer;
}

/* Make action buttons more prominent */
.btn-lg[b-zvea2is2w5] {
    padding: 0.75rem 1.5rem;
    font-size: 1.125rem;
}

.btn i[b-zvea2is2w5] {
    margin-right: 0.5rem;
}

/* Status badge improvements */
.badge[b-zvea2is2w5] {
    font-size: 0.875rem;
    padding: 0.375rem 0.75rem;
}

/* Card enhancements */
.card[b-zvea2is2w5] {
    border: none;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

.card-header[b-zvea2is2w5] {
    border-bottom: none;
    padding: 1rem 1.5rem;
}

.card-body[b-zvea2is2w5] {
    padding: 1.5rem;
}

/* Alert improvements */
.alert[b-zvea2is2w5] {
    border-left-width: 4px;
}

.alert i[b-zvea2is2w5] {
    margin-right: 0.5rem;
}

/* Pre-formatted text in errors */
pre[b-zvea2is2w5] {
    background-color: #f8f9fa;
    padding: 1rem;
    border-radius: 0.375rem;
    border: 1px solid #dee2e6;
    font-size: 0.875rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .btn-lg[b-zvea2is2w5] {
        width: 100%;
        margin-bottom: 0.5rem;
    }

    .d-flex.gap-3[b-zvea2is2w5] {
        flex-direction: column;
        gap: 0 !important;
    }

    .info-item[b-zvea2is2w5] {
        margin-bottom: 0.5rem;
    }
}

/* Reset Confirmation Modal Styles */
.modal-backdrop[b-zvea2is2w5] {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1040;
    width: 100vw;
    height: 100vh;
    background-color: #000;
    opacity: 0.5;
}

.modal.show[b-zvea2is2w5] {
    z-index: 1050;
}

.modal-dialog[b-zvea2is2w5] {
    margin: 1.75rem auto;
}

#resetConfirmModal .modal-header[b-zvea2is2w5] {
    border-bottom: 2px solid #ffc107;
}

#resetConfirmModal .modal-body ul[b-zvea2is2w5] {
    padding-left: 1.5rem;
}

#resetConfirmModal .modal-body ul li[b-zvea2is2w5] {
    margin-bottom: 0.5rem;
}

#resetConfirmModal .card[b-zvea2is2w5] {
    border: 1px solid #dee2e6;
}

#resetConfirmModal .btn-warning[b-zvea2is2w5] {
    color: #000;
    font-weight: 600;
}

#resetConfirmModal .btn-warning:hover[b-zvea2is2w5] {
    background-color: #ffca2c;
    border-color: #ffc720;
}

#resetConfirmModal .alert-warning[b-zvea2is2w5] {
    border-left: 4px solid #ffc107;
}


/* /Pages/Admin/Settings/ChatSettingsSection.razor.rz.scp.css */
.settings-section[b-71m1vg6nkh] {
    background: white;
    border-radius: 0.5rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid #e5e7eb;
}

.section-title[b-71m1vg6nkh] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0 0 1.5rem 0;
    font-size: 1.125rem;
    font-weight: 600;
    color: #111827;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #e5e7eb;
}

.section-title .bi[b-71m1vg6nkh] {
    font-size: 1.25rem;
    color: #3b82f6;
}

.settings-grid[b-71m1vg6nkh] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.setting-item[b-71m1vg6nkh] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.setting-item.full-width[b-71m1vg6nkh] {
    grid-column: 1 / -1;
}

.setting-label[b-71m1vg6nkh] {
    font-weight: 600;
    font-size: 0.875rem;
    color: #374151;
    margin: 0;
}

.setting-value[b-71m1vg6nkh] {
    width: 100%;
}

.setting-value input[b-71m1vg6nkh],
.setting-value textarea[b-71m1vg6nkh],
.setting-value select[b-71m1vg6nkh] {
    background-color: #ffffff;
    border: 1px solid #d1d5db;
    color: #111827;
}

.setting-value input:focus[b-71m1vg6nkh],
.setting-value textarea:focus[b-71m1vg6nkh],
.setting-value select:focus[b-71m1vg6nkh] {
    background-color: #ffffff;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.setting-value input[b-71m1vg6nkh]::placeholder,
.setting-value textarea[b-71m1vg6nkh]::placeholder {
    color: #9ca3af;
}

.setting-description[b-71m1vg6nkh] {
    color: #6b7280;
    font-size: 0.75rem;
    margin: 0;
}

@media (max-width: 768px) {
    .settings-grid[b-71m1vg6nkh] {
        grid-template-columns: 1fr;
    }

    .setting-item.full-width[b-71m1vg6nkh] {
        grid-column: 1;
    }
}

@media (max-width: 640px) {
    .settings-section[b-71m1vg6nkh] {
        padding: 1rem;
    }
}
/* /Pages/Admin/Settings/DomainSettingsPage.razor.rz.scp.css */
.settings-page[b-ngw112ghr6] {
    display: flex;
    flex-direction: column;
    height: calc(100vh - 100px);
    overflow: hidden;
}

.settings-header[b-ngw112ghr6] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #e5e7eb;
    background-color: #ffffff;
    flex-shrink: 0;
}

.settings-header h3[b-ngw112ghr6] {
    margin: 0;
    color: #111827;
}

.header-actions[b-ngw112ghr6] {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.domain-selector[b-ngw112ghr6] {
    min-width: 250px;
}

.settings-header button[b-ngw112ghr6] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.settings-container[b-ngw112ghr6] {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 2rem;
    background-color: #f9fafb;
}

.loading-state[b-ngw112ghr6] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    gap: 1rem;
    color: #6b7280;
}

.loading-state .spinner-border[b-ngw112ghr6] {
    width: 3rem;
    height: 3rem;
}

.no-selection[b-ngw112ghr6] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    text-align: center;
    color: #6b7280;
}

.no-selection-icon[b-ngw112ghr6] {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: #9ca3af;
}

.no-selection h4[b-ngw112ghr6] {
    color: #374151;
    margin-bottom: 0.5rem;
}

.no-selection p[b-ngw112ghr6] {
    max-width: 400px;
}

.settings-content[b-ngw112ghr6] {
    max-width: 900px;
    margin: 0 auto;
}

/* Settings actions */
.settings-actions[b-ngw112ghr6] {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e5e7eb;
}

.settings-actions .btn[b-ngw112ghr6] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Alert customization */
.alert[b-ngw112ghr6] {
    max-width: 900px;
    margin: 0 auto 1rem auto;
}

.alert-success[b-ngw112ghr6] {
    background-color: #d1fae5;
    border-color: #a7f3d0;
    color: #065f46;
}

.alert-dismissible .btn-close[b-ngw112ghr6] {
    padding: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .header-actions[b-ngw112ghr6] {
        flex-direction: column;
        align-items: stretch;
    }

    .domain-selector[b-ngw112ghr6] {
        min-width: unset;
        width: 100%;
    }

    .settings-actions[b-ngw112ghr6] {
        flex-direction: column;
    }

    .settings-actions .btn[b-ngw112ghr6] {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .settings-container[b-ngw112ghr6] {
        padding: 1rem;
    }

    .settings-header[b-ngw112ghr6] {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }
}
/* /Pages/Admin/Settings/QuestionsSection.razor.rz.scp.css */
[b-dmb27swibv] .settings-section {
    background: white;
    border-radius: 0.5rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid #e5e7eb;
}

[b-dmb27swibv] .section-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0 0 1.5rem 0;
    font-size: 1.125rem;
    font-weight: 600;
    color: #111827;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #e5e7eb;
}

[b-dmb27swibv] .section-title .bi {
    font-size: 1.25rem;
    color: #3b82f6;
}

[b-dmb27swibv] .no-questions {
    text-align: center;
    padding: 2rem;
    color: #6b7280;
}

[b-dmb27swibv] .no-questions p {
    margin: 0.5rem 0;
}

[b-dmb27swibv] .questions-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

[b-dmb27swibv] .question-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    background-color: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 0.375rem;
    gap: 1rem;
}

[b-dmb27swibv] .question-item.inactive {
    opacity: 0.6;
    background-color: #f3f4f6;
}

[b-dmb27swibv] .question-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex: 1;
    min-width: 0;
}

[b-dmb27swibv] .question-order {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: #e5e7eb;
    color: #374151;
    font-size: 0.75rem;
    font-weight: 600;
    flex-shrink: 0;
}

[b-dmb27swibv] .question-text {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

[b-dmb27swibv] .question-content input {
    flex: 1;
}

[b-dmb27swibv] .question-actions {
    display: flex;
    gap: 0.5rem;
    flex-shrink: 0;
}

[b-dmb27swibv] .question-actions .btn {
    padding: 0.25rem 0.5rem;
}

@media (max-width: 640px) {
    [b-dmb27swibv] .settings-section {
        padding: 1rem;
    }

    [b-dmb27swibv] .question-item {
        flex-direction: column;
        align-items: stretch;
    }

    [b-dmb27swibv] .question-actions {
        justify-content: flex-end;
    }
}
/* /Pages/Admin/Settings/SearchSettingsSection.razor.rz.scp.css */
.settings-section[b-3z0ur8ktyn] {
    background: white;
    border-radius: 0.5rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid #e5e7eb;
}

.section-title[b-3z0ur8ktyn] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0 0 1.5rem 0;
    font-size: 1.125rem;
    font-weight: 600;
    color: #111827;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #e5e7eb;
}

.section-title .bi[b-3z0ur8ktyn] {
    font-size: 1.25rem;
    color: #3b82f6;
}

.settings-grid[b-3z0ur8ktyn] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.setting-item[b-3z0ur8ktyn] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.setting-item.full-width[b-3z0ur8ktyn] {
    grid-column: 1 / -1;
}

.setting-label[b-3z0ur8ktyn] {
    font-weight: 600;
    font-size: 0.875rem;
    color: #374151;
    margin: 0;
}

.setting-value[b-3z0ur8ktyn] {
    width: 100%;
}

.setting-value input[b-3z0ur8ktyn],
.setting-value textarea[b-3z0ur8ktyn],
.setting-value select[b-3z0ur8ktyn] {
    background-color: #ffffff;
    border: 1px solid #d1d5db;
    color: #111827;
}

.setting-value input:focus[b-3z0ur8ktyn],
.setting-value textarea:focus[b-3z0ur8ktyn],
.setting-value select:focus[b-3z0ur8ktyn] {
    background-color: #ffffff;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.setting-value input[b-3z0ur8ktyn]::placeholder,
.setting-value textarea[b-3z0ur8ktyn]::placeholder {
    color: #9ca3af;
}

.setting-description[b-3z0ur8ktyn] {
    color: #6b7280;
    font-size: 0.75rem;
    margin: 0;
}

@media (max-width: 768px) {
    .settings-grid[b-3z0ur8ktyn] {
        grid-template-columns: 1fr;
    }

    .setting-item.full-width[b-3z0ur8ktyn] {
        grid-column: 1;
    }
}

@media (max-width: 640px) {
    .settings-section[b-3z0ur8ktyn] {
        padding: 1rem;
    }
}
/* /Pages/Admin/Settings/UiSettingsSection.razor.rz.scp.css */
.settings-section[b-5x8v51zwi1] {
    background: white;
    border-radius: 0.5rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid #e5e7eb;
}

.section-title[b-5x8v51zwi1] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0 0 1.5rem 0;
    font-size: 1.125rem;
    font-weight: 600;
    color: #111827;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #e5e7eb;
}

.section-title .bi[b-5x8v51zwi1] {
    font-size: 1.25rem;
    color: #3b82f6;
}

.settings-grid[b-5x8v51zwi1] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.setting-item[b-5x8v51zwi1] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.setting-item.full-width[b-5x8v51zwi1] {
    grid-column: 1 / -1;
}

.setting-label[b-5x8v51zwi1] {
    font-weight: 600;
    font-size: 0.875rem;
    color: #374151;
    margin: 0;
}

.setting-value[b-5x8v51zwi1] {
    width: 100%;
}

.setting-value input[b-5x8v51zwi1],
.setting-value textarea[b-5x8v51zwi1],
.setting-value select[b-5x8v51zwi1] {
    background-color: #ffffff;
    border: 1px solid #d1d5db;
    color: #111827;
}

.setting-value input:focus[b-5x8v51zwi1],
.setting-value textarea:focus[b-5x8v51zwi1],
.setting-value select:focus[b-5x8v51zwi1] {
    background-color: #ffffff;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.setting-value input[b-5x8v51zwi1]::placeholder,
.setting-value textarea[b-5x8v51zwi1]::placeholder {
    color: #9ca3af;
}

.setting-description[b-5x8v51zwi1] {
    color: #6b7280;
    font-size: 0.75rem;
    margin: 0;
}

@media (max-width: 768px) {
    .settings-grid[b-5x8v51zwi1] {
        grid-template-columns: 1fr;
    }

    .setting-item.full-width[b-5x8v51zwi1] {
        grid-column: 1;
    }
}

@media (max-width: 640px) {
    .settings-section[b-5x8v51zwi1] {
        padding: 1rem;
    }
}
/* /Pages/Admin/TokenUsage.razor.rz.scp.css */
.token-usage-page[b-roe6jf8gyf] {
    padding: 20px;
}

.filters-section[b-roe6jf8gyf] {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.statistics-section[b-roe6jf8gyf] {
    margin-bottom: 20px;
}

.stat-card[b-roe6jf8gyf] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.stat-card h6[b-roe6jf8gyf] {
    margin-bottom: 10px;
    font-size: 0.9rem;
    opacity: 0.9;
}

.stat-card .stat-value[b-roe6jf8gyf] {
    font-size: 1.8rem;
    font-weight: bold;
    margin: 0;
}

.table-responsive[b-roe6jf8gyf] {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.table[b-roe6jf8gyf] {
    margin-bottom: 0;
}

.table thead[b-roe6jf8gyf] {
    background-color: #f8f9fa;
}

.table th[b-roe6jf8gyf] {
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid #dee2e6;
}

.table td[b-roe6jf8gyf] {
    vertical-align: middle;
    font-size: 0.9rem;
}

.question-preview[b-roe6jf8gyf] {
    display: inline-block;
    max-width: 200px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    cursor: help;
}

.pagination-section[b-roe6jf8gyf] {
    margin-top: 20px;
}

.modal.show[b-roe6jf8gyf] {
    display: block;
}

.user-question-detail[b-roe6jf8gyf] {
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: 4px;
    border-left: 4px solid #667eea;
    white-space: pre-wrap;
    word-wrap: break-word;
}

.btn-sm[b-roe6jf8gyf] {
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
}

@media (max-width: 768px) {
    .stat-card[b-roe6jf8gyf] {
        margin-bottom: 15px;
    }
    
    .table[b-roe6jf8gyf] {
        font-size: 0.8rem;
    }
    
    .question-preview[b-roe6jf8gyf] {
        max-width: 100px;
    }
}
/* /Pages/Chat/Chat.razor.rz.scp.css */
.chat-page[b-riuvimgsd7] {
    display: flex;
    flex-direction: column;
    height: calc(100vh - 40px);
    overflow: hidden;
    min-height: 0;
}

.chat-layout[b-riuvimgsd7] {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    flex: 1 1 auto;
    min-height: 0;
    position: relative;
    transition: grid-template-columns 0.3s ease;
    overflow: hidden;
}

/* Layout adjustment when document panel is visible */
.chat-layout.with-panel[b-riuvimgsd7] {
    grid-template-columns: 1fr minmax(350px, 450px);
}

.chat-main[b-riuvimgsd7] {
    display: flex;
    flex-direction: column;
    min-width: 0;
    min-height: 0;
    height: 100%;
    overflow: hidden;
}

.chat-messages-container[b-riuvimgsd7] {
    flex: 1 1 auto;
    overflow-y: auto;
    overflow-x: hidden;
    min-height: 0;
}

.chat-input-container[b-riuvimgsd7] {
    flex: 0 0 auto;
    padding: 0.75rem 1.5rem 1.5rem 1.5rem;
    border-top: 1px solid #e5e7eb;
    background-color: #f3f4f6;
}

/* Responsive */
@media (max-width: 1024px) {
    .chat-layout.with-panel[b-riuvimgsd7] {
        grid-template-columns: 1fr;
    }
}

/* /Pages/Chat/ChatCitation.razor.rz.scp.css */
.citation[b-81ko7wld94] {
    display: flex;
    padding: 0.75rem;
    margin: 0;
    border: 1px solid #e5e7eb;
    border-left: 3px solid #a770de;
    gap: 0.75rem;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    line-height: 1.25rem;
    background-color: #ffffff;
    transition: all 0.2s ease;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    width: 100%;
    text-align: left;
    align-items: center;
}

.citation:hover[b-81ko7wld94] {
    background-color: #f9fafb;
    border-left-color: #865cb1;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.citation-number[b-81ko7wld94] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.75rem;
    height: 1.75rem;
    background-color: #a770de;
    color: #ffffff;
    border-radius: 50%;
    font-weight: 600;
    font-size: 0.75rem;
    flex-shrink: 0;
}

.citation:hover .citation-number[b-81ko7wld94] {
    background-color: #865cb1;
}

.citation svg[b-81ko7wld94] {
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
    color: #6b7280;
}

.citation:active[b-81ko7wld94] {
    background-color: #f3f4f6;
    transform: scale(0.99);
}

.citation-content[b-81ko7wld94] {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
}

.citation-header[b-81ko7wld94] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

.citation-file[b-81ko7wld94] {
    font-weight: 600;
    color: #111827;
    word-break: break-word;
    flex: 1;
    min-width: 0;
}

.citation-quote[b-81ko7wld94] {
    font-size: 0.8rem;
    color: #6b7280;
    line-height: 1.4;
}

.citation-scores[b-81ko7wld94] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

.citation-score[b-81ko7wld94] {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    padding: 0.25rem 0.625rem;
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 1rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    cursor: help;
    transition: all 0.2s ease;
}

.citation-score:hover[b-81ko7wld94] {
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.reranker-score[b-81ko7wld94] {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
}

.reranker-score:hover[b-81ko7wld94] {
    background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%);
}

.hybrid-score[b-81ko7wld94] {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

.hybrid-score:hover[b-81ko7wld94] {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
}

.score-icon[b-81ko7wld94] {
    width: 0.875rem;
    height: 0.875rem;
}
/* /Pages/Chat/ChatHeader.razor.rz.scp.css */
.chat-header[b-bk4k9oj0k7] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #e5e7eb;
    background-color: #ffffff;
    flex-shrink: 0;
}

.chat-header h3[b-bk4k9oj0k7] {
    margin: 0;
}

.chat-header-actions[b-bk4k9oj0k7] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.chat-header button[b-bk4k9oj0k7] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
/* /Pages/Chat/ChatInput.razor.rz.scp.css */
.input-box[b-kot096mkp0] {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    background: white;
    border: 1px solid rgb(229, 231, 235);
    border-radius: 8px;
    padding: 0.5rem 0.75rem;
    margin-top: 0.75rem;
    min-height: 60px;
}

    .input-box:focus-within[b-kot096mkp0] {
        outline: 2px solid #4152d5;
    }

textarea[b-kot096mkp0] {
    resize: none;
    border: none;
    outline: none;
    flex: 1;
    min-height: 40px;
    max-height: 200px;
    overflow-y: auto;
    font-family: inherit;
    font-size: inherit;
    line-height: 1.5;
}

    textarea:placeholder-shown + .tools[b-kot096mkp0] {
        --send-button-color: #aaa;
    }

.tools[b-kot096mkp0] {
    display: flex;
    align-items: flex-end;
    padding-left: 0.5rem;
}

.tool-icon[b-kot096mkp0] {
    width: 1.25rem;
    height: 1.25rem;
}

.send-button[b-kot096mkp0] {
    color: var(--send-button-color);
    padding: 0.25rem;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .send-button:hover:not(:disabled)[b-kot096mkp0] {
        color: black;
    }

    .send-button:disabled[b-kot096mkp0] {
        opacity: 0.5;
        cursor: not-allowed;
    }

.attach[b-kot096mkp0] {
    background-color: white;
    border-style: dashed;
    color: #888;
    border-color: #888;
    padding: 3px 8px;
}

    .attach:hover[b-kot096mkp0] {
        background-color: #f0f0f0;
        color: black;
    }
/* /Pages/Chat/ChatMessageItem.razor.rz.scp.css */
.user-message[b-uy57l1z9tx] {
    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-uy57l1z9tx], .assistant-search[b-uy57l1z9tx] {
    display: grid;
    grid-template-rows: min-content;
    grid-template-columns: 2rem minmax(0, 1fr);
    gap: 0.25rem;
}

.assistant-message-header[b-uy57l1z9tx] {
    font-weight: 600;
}

.assistant-message-text[b-uy57l1z9tx] {
    grid-column-start: 2;
}

.assistant-message-icon[b-uy57l1z9tx] {
    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-uy57l1z9tx] {
        width: 1rem;
        height: 1rem;
    }

.assistant-search[b-uy57l1z9tx] {
    font-size: 0.875rem;
    line-height: 1.25rem;
}

.assistant-search-icon[b-uy57l1z9tx] {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 1.5rem;
    height: 1.5rem;
}

    .assistant-search-icon svg[b-uy57l1z9tx] {
        width: 1rem;
        height: 1rem;
    }

.assistant-search-content[b-uy57l1z9tx] {
    align-content: center;
}

.assistant-search-phrase[b-uy57l1z9tx] {
    font-weight: 600;
}

/* Citations container */
.citations-container[b-uy57l1z9tx] {
    margin-top: 1rem;
    padding-top: 0.75rem;
    border-top: 1px solid #e5e7eb;
}

/* Images container */
.images-container[b-uy57l1z9tx] {
    margin-top: 1rem;
    padding-top: 0.75rem;
    border-top: 1px solid #e5e7eb;
}

/* Citations toggle button */
.citations-toggle[b-uy57l1z9tx] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    background-color: #f3f4f6;
    border: 1px solid #d1d5db;
    border-radius: 0.375rem;
    cursor: pointer;
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
    transition: all 0.2s ease;
    width: 100%;
    text-align: left;
}

/* Images toggle button */
.images-toggle[b-uy57l1z9tx] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    background-color: #f3f4f6;
    border: 1px solid #d1d5db;
    border-radius: 0.375rem;
    cursor: pointer;
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
    transition: all 0.2s ease;
    width: 100%;
    text-align: left;
}

.citations-toggle:hover[b-uy57l1z9tx], .images-toggle:hover[b-uy57l1z9tx] {
    background-color: #e5e7eb;
    border-color: #9ca3af;
}

.citations-toggle:active[b-uy57l1z9tx], .images-toggle:active[b-uy57l1z9tx] {
    transform: scale(0.98);
}

/* Citations icon */
.citations-icon[b-uy57l1z9tx], .images-icon[b-uy57l1z9tx] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1rem;
    height: 1rem;
}

.citations-icon svg[b-uy57l1z9tx], .images-icon svg[b-uy57l1z9tx] {
    width: 0.875rem;
    height: 0.875rem;
    transition: transform 0.2s ease;
}

.citations-icon svg.expanded[b-uy57l1z9tx], .images-icon svg.expanded[b-uy57l1z9tx] {
    transform: rotate(90deg);
}

/* Citations label */
.citations-label[b-uy57l1z9tx], .images-label[b-uy57l1z9tx] {
    flex: 1;
}

/* Citations list */
.citations-list[b-uy57l1z9tx] {
    list-style: none;
    padding: 0;
    margin: 0.75rem 0 0 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    animation: slideDown 0.2s ease-out;
}

/* Citation groups */
.citation-group[b-uy57l1z9tx] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.citation-group-header[b-uy57l1z9tx] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    background-color: #f9fafb;
    border-left: 3px solid #9b72ce;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #374151;
}

.citation-group-icon[b-uy57l1z9tx] {
    width: 1.125rem;
    height: 1.125rem;
    color: #9b72ce;
    flex-shrink: 0;
}

.citation-group-title[b-uy57l1z9tx] {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.citation-group-count[b-uy57l1z9tx] {
    font-weight: 400;
    color: #6b7280;
    font-size: 0.8125rem;
}

.citation-group-items[b-uy57l1z9tx] {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding-left: 1.5rem;
}

/* Images gallery */
.images-gallery[b-uy57l1z9tx] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
    margin: 0.75rem 0 0 0;
    animation: slideDown 0.2s ease-out;
}

.image-item[b-uy57l1z9tx] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    overflow: hidden;
    background-color: #f9fafb;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.image-item:hover[b-uy57l1z9tx] {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.image-item img[b-uy57l1z9tx] {
    width: 100%;
    height: 200px;
    object-fit: cover;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.image-item img:hover[b-uy57l1z9tx] {
    opacity: 0.9;
}

.image-caption[b-uy57l1z9tx] {
    padding: 0.5rem 0.75rem;
    font-size: 0.75rem;
    color: #6b7280;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Suggested Prompts */
.suggested-prompts-container[b-uy57l1z9tx] {
    margin-top: 1.5rem;
    padding: 1rem;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-radius: 0.75rem;
    border: 1px solid #bae6fd;
}

.suggested-prompts-header[b-uy57l1z9tx] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #0369a1;
}

.suggested-prompts-icon[b-uy57l1z9tx] {
    width: 1.125rem;
    height: 1.125rem;
    flex-shrink: 0;
}

.suggested-prompts-list[b-uy57l1z9tx] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.suggested-prompt-button[b-uy57l1z9tx] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background-color: white;
    border: 1px solid #e0f2fe;
    border-radius: 0.5rem;
    cursor: pointer;
    text-align: left;
    font-size: 0.875rem;
    color: #0c4a6e;
    transition: all 0.2s ease;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.suggested-prompt-button:hover[b-uy57l1z9tx] {
    background-color: #f0f9ff;
    border-color: #7dd3fc;
    transform: translateX(4px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.suggested-prompt-button:active[b-uy57l1z9tx] {
    transform: translateX(2px);
}

.suggested-prompt-text[b-uy57l1z9tx] {
    flex: 1;
    line-height: 1.5;
}

.suggested-prompt-arrow[b-uy57l1z9tx] {
    width: 1rem;
    height: 1rem;
    color: #0891b2;
    flex-shrink: 0;
    opacity: 0.6;
    transition: opacity 0.2s ease;
}

.suggested-prompt-button:hover .suggested-prompt-arrow[b-uy57l1z9tx] {
    opacity: 1;
}

/* Document Filter Controls */
.document-filter-controls[b-uy57l1z9tx] {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
    align-items: center;
    padding: 1rem;
    background-color: #f9fafb;
    border-radius: 0.5rem;
    border: 1px solid #e5e7eb;
}

.document-filter-controls select[b-uy57l1z9tx] {
    flex: 1;
    max-width: 400px;
    padding: 0.5rem 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 0.375rem;
    background-color: white;
    font-size: 0.875rem;
    color: #374151;
    transition: border-color 0.2s ease;
}

.document-filter-controls select:hover[b-uy57l1z9tx] {
    border-color: #9b72ce;
}

.document-filter-controls select:focus[b-uy57l1z9tx] {
    outline: none;
    border-color: #9b72ce;
    box-shadow: 0 0 0 3px rgba(155, 114, 206, 0.1);
}

.document-filter-controls button[b-uy57l1z9tx] {
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    background-color: #9b72ce;
    color: white;
    border: none;
    border-radius: 0.375rem;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.1s ease;
}

.document-filter-controls button:hover:not(:disabled)[b-uy57l1z9tx] {
    background-color: #8861b5;
}

.document-filter-controls button:active:not(:disabled)[b-uy57l1z9tx] {
    transform: scale(0.98);
}

.document-filter-controls button:disabled[b-uy57l1z9tx] {
    background-color: #d1d5db;
    cursor: not-allowed;
    opacity: 0.6;
}

[b-uy57l1z9tx] ul {
    list-style-type: disc;
    margin-left: 1.5rem;
}

[b-uy57l1z9tx] ol {
    list-style-type: decimal;
    margin-left: 1.5rem;
}

[b-uy57l1z9tx] li {
    margin: 0.5rem 0;
}

[b-uy57l1z9tx] strong {
    font-weight: 600;
}

[b-uy57l1z9tx] h3 {
    margin: 1rem 0;
    font-weight: 600;
}

[b-uy57l1z9tx] p + p {
    margin-top: 1rem;
}

[b-uy57l1z9tx] table {
    margin: 1rem 0;
}

[b-uy57l1z9tx] th {
    text-align: left;
    border-bottom: 1px solid silver;
}

[b-uy57l1z9tx] th, [b-uy57l1z9tx] td {
    padding: 0.1rem 0.5rem;
}

[b-uy57l1z9tx] th, [b-uy57l1z9tx] tr:nth-child(even) {
    background-color: rgba(0, 0, 0, 0.05);
}

[b-uy57l1z9tx] pre > code {
    background-color: white;
    display: block;
    padding: 0.5rem 1rem;
    margin: 1rem 0;
    overflow-x: auto;
}
/* /Pages/Chat/ChatMessageList.razor.rz.scp.css */
.message-list-container[b-jgcpjsjqa9] {
    margin: 2rem 1.5rem;
    flex-grow: 1;
    padding: 2rem 1.5rem;
    scroll-behavior: smooth;
}

.message-list[b-jgcpjsjqa9] {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.no-messages[b-jgcpjsjqa9] {
    text-align: center;
    font-size: 1.25rem;
    color: #999;
    padding: 4rem 0;
}

chat-messages[b-jgcpjsjqa9] >  div:last-of-type {
    /* Adds some vertical buffer to so that suggestions don't overlap the output when they appear */
    margin-bottom: 2rem;
}
/* /Pages/Chat/ImageModal.razor.rz.scp.css */
/* Image Modal */
.image-modal-overlay[b-9jem2klenf] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 2rem;
    animation: fadeIn-b-9jem2klenf 0.2s ease-out;
}

@keyframes fadeIn-b-9jem2klenf {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.image-modal-content[b-9jem2klenf] {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    animation: scaleIn-b-9jem2klenf 0.2s ease-out;
}

@keyframes scaleIn-b-9jem2klenf {
    from {
        transform: scale(0.9);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.image-modal-content img[b-9jem2klenf] {
    max-width: 100%;
    max-height: calc(90vh - 8rem);
    object-fit: contain;
    border-radius: 0.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.image-modal-close[b-9jem2klenf] {
    position: absolute;
    top: -3rem;
    right: 0;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.5rem;
    padding: 0.5rem;
    cursor: pointer;
    color: white;
    transition: background-color 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
}

.image-modal-close:hover[b-9jem2klenf] {
    background-color: rgba(255, 255, 255, 0.2);
}

.image-modal-close svg[b-9jem2klenf] {
    width: 1.5rem;
    height: 1.5rem;
}

.image-modal-info[b-9jem2klenf] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
    max-width: 90vw;
}

.image-modal-caption[b-9jem2klenf] {
    color: white;
    font-size: 0.875rem;
    font-weight: 600;
    text-align: center;
    padding: 0.5rem 1rem;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 0.375rem;
    max-width: 100%;
    word-wrap: break-word;
}

.image-modal-document-name[b-9jem2klenf] {
    font-weight: 600;
}

.image-modal-page[b-9jem2klenf] {
    font-weight: 400;
    opacity: 0.8;
    font-size: 0.8125rem;
}

.image-modal-text[b-9jem2klenf] {
    color: white;
    font-size: 0.875rem;
    line-height: 1.5;
    text-align: left;
    padding: 1rem 1.25rem;
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 0.5rem;
    max-width: 100%;
    max-height: 200px;
    overflow-y: auto;
    white-space: pre-wrap;
    word-wrap: break-word;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.image-modal-text[b-9jem2klenf]::-webkit-scrollbar {
    width: 8px;
}

.image-modal-text[b-9jem2klenf]::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.image-modal-text[b-9jem2klenf]::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
}

.image-modal-text[b-9jem2klenf]::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.4);
}
/* /Pages/Chat/WelcomePanel.razor.rz.scp.css */
.welcome-panel[b-s4qfb1ffj0] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.no-domain-message[b-s4qfb1ffj0],
.loading-message[b-s4qfb1ffj0] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2rem;
}

.no-domain-message p[b-s4qfb1ffj0],
.loading-message p[b-s4qfb1ffj0] {
    font-size: 1.1rem;
    color: var(--text-muted, #666);
    margin: 0;
}

.loading-spinner[b-s4qfb1ffj0] {
    width: 40px;
    height: 40px;
    border: 3px solid var(--border-color, #e0e0e0);
    border-top-color: var(--accent-color, #0078d4);
    border-radius: 50%;
    animation: spin-b-s4qfb1ffj0 1s linear infinite;
}

@keyframes spin-b-s4qfb1ffj0 {
    to {
        transform: rotate(360deg);
    }
}

.welcome-message[b-s4qfb1ffj0] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.welcome-icon[b-s4qfb1ffj0] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--accent-color, #0078d4);
    color: white;
}

.welcome-icon.no-domain[b-s4qfb1ffj0] {
    background-color: var(--text-muted, #999);
}

.welcome-message p[b-s4qfb1ffj0] {
    font-size: 1.1rem;
    color: var(--text-color, #333);
    line-height: 1.6;
    margin: 0;
    max-width: 600px;
}

.suggested-questions[b-s4qfb1ffj0] {
    width: 100%;
}

.suggested-questions h4[b-s4qfb1ffj0] {
    font-size: 0.9rem;
    color: var(--text-muted, #666);
    margin-bottom: 1rem;
    font-weight: 500;
}

.questions-grid[b-s4qfb1ffj0] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 0.75rem;
    width: 100%;
}

.question-button[b-s4qfb1ffj0] {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background-color: var(--surface-color, #f5f5f5);
    border: 1px solid var(--border-color, #e0e0e0);
    border-radius: 12px;
    cursor: pointer;
    text-align: left;
    transition: all 0.2s ease;
    min-height: 60px;
}

.question-button:hover[b-s4qfb1ffj0] {
    background-color: var(--surface-hover, #ebebeb);
    border-color: var(--accent-color, #0078d4);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.question-button:active[b-s4qfb1ffj0] {
    transform: translateY(0);
}

.question-icon[b-s4qfb1ffj0] {
    font-size: 1.25rem;
    flex-shrink: 0;
}

.question-text[b-s4qfb1ffj0] {
    font-size: 0.95rem;
    color: var(--text-color, #333);
    line-height: 1.4;
}

.default-message[b-s4qfb1ffj0] {
    color: var(--text-muted, #666);
    font-size: 1rem;
}

.default-message p[b-s4qfb1ffj0] {
    margin: 0;
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    .no-domain-message p[b-s4qfb1ffj0],
    .loading-message p[b-s4qfb1ffj0] {
        color: #999;
    }

    .loading-spinner[b-s4qfb1ffj0] {
        border-color: #404040;
        border-top-color: var(--accent-color, #0078d4);
    }

    .welcome-message p[b-s4qfb1ffj0] {
        color: #e0e0e0;
    }

    .suggested-questions h4[b-s4qfb1ffj0] {
        color: #999;
    }

    .question-button[b-s4qfb1ffj0] {
        background-color: #2a2a2a;
        border-color: #404040;
    }

    .question-button:hover[b-s4qfb1ffj0] {
        background-color: #333;
    }

    .question-text[b-s4qfb1ffj0] {
        color: #e0e0e0;
    }

    .default-message[b-s4qfb1ffj0] {
        color: #999;
    }
}
/* /Pages/Home.razor.rz.scp.css */
.home-page[b-4uuk2megdg] {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

/* Hero Section */
.hero-section[b-4uuk2megdg] {
    text-align: center;
    margin-bottom: 4rem;
    padding: 2rem 0;
}

.hero-section h1[b-4uuk2megdg] {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
}

.hero-description[b-4uuk2megdg] {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #4b5563;
    max-width: 800px;
    margin: 0 auto;
}

/* Features Section */
.features-section[b-4uuk2megdg] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.feature-card[b-4uuk2megdg] {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 1rem;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card[b-4uuk2megdg]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.feature-card:hover[b-4uuk2megdg] {
    border-color: #667eea;
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.2);
}

.feature-card:hover[b-4uuk2megdg]::before {
    transform: scaleX(1);
}

.feature-icon[b-4uuk2megdg] {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 1rem;
    transition: all 0.3s ease;
}

.chat-icon[b-4uuk2megdg] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.search-icon[b-4uuk2megdg] {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
}

.feature-card:hover .feature-icon[b-4uuk2megdg] {
    transform: scale(1.1) rotate(5deg);
}

.feature-content[b-4uuk2megdg] {
    flex: 1;
}

.feature-content h2[b-4uuk2megdg] {
    margin: 0 0 0.75rem 0;
    font-size: 1.75rem;
    color: #111827;
}

.feature-content p[b-4uuk2megdg] {
    margin: 0 0 1rem 0;
    color: #6b7280;
    line-height: 1.6;
}

.feature-cta[b-4uuk2megdg] {
    display: inline-block;
    font-weight: 600;
    color: #667eea;
    transition: all 0.2s ease;
}

.feature-cta.coming-soon[b-4uuk2megdg] {
    color: #f5576c;
}

.feature-card:hover .feature-cta[b-4uuk2megdg] {
    transform: translateX(5px);
}

/* Info Section */
.info-section[b-4uuk2megdg] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.info-card[b-4uuk2megdg] {
    padding: 2rem;
    background: linear-gradient(135deg, #f6f8ff 0%, #f0f4ff 100%);
    border-radius: 1rem;
    border: 1px solid #e0e7ff;
}

.info-card h3[b-4uuk2megdg] {
    margin: 0 0 1rem 0;
    font-size: 1.25rem;
    color: #111827;
}

.info-card p[b-4uuk2megdg] {
    margin: 0;
    color: #4b5563;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .home-page[b-4uuk2megdg] {
        padding: 2rem 1rem;
    }

    .hero-section h1[b-4uuk2megdg] {
        font-size: 2rem;
    }

    .hero-description[b-4uuk2megdg] {
        font-size: 1rem;
    }

    .features-section[b-4uuk2megdg] {
        grid-template-columns: 1fr;
    }

    .feature-card[b-4uuk2megdg] {
        flex-direction: column;
        text-align: center;
    }

    .feature-icon[b-4uuk2megdg] {
        margin: 0 auto;
    }

    .info-section[b-4uuk2megdg] {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-section h1[b-4uuk2megdg] {
        font-size: 1.75rem;
    }

    .feature-content h2[b-4uuk2megdg] {
        font-size: 1.5rem;
    }

    .feature-icon[b-4uuk2megdg] {
        width: 64px;
        height: 64px;
    }

    .feature-icon svg[b-4uuk2megdg] {
        width: 32px;
        height: 32px;
    }
}
/* /Pages/Login.razor.rz.scp.css */
.login-container[b-bmj9o2jlvj] {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 1rem;
}

.login-card[b-bmj9o2jlvj] {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    padding: 2.5rem;
    width: 100%;
    max-width: 400px;
}

.login-header[b-bmj9o2jlvj] {
    text-align: center;
    margin-bottom: 2rem;
}

.login-icon[b-bmj9o2jlvj] {
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1rem;
    color: #667eea;
}

.login-header h2[b-bmj9o2jlvj] {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 0.5rem;
}

.login-header p[b-bmj9o2jlvj] {
    color: #6b7280;
    font-size: 0.875rem;
    margin: 0;
}

.login-form[b-bmj9o2jlvj] {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-group[b-bmj9o2jlvj] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label[b-bmj9o2jlvj] {
    font-weight: 500;
    color: #374151;
    font-size: 0.875rem;
}

.form-input[b-bmj9o2jlvj] {
    padding: 0.75rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: all 0.2s;
    width: 100%;
}

.form-input:focus[b-bmj9o2jlvj] {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-group .validation-message[b-bmj9o2jlvj] {
    color: #ef4444;
    font-size: 0.75rem;
    margin-top: 0.25rem;
}

.error-message[b-bmj9o2jlvj] {
    background: #fee2e2;
    color: #991b1b;
    padding: 0.75rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    border: 1px solid #fecaca;
}

.login-button[b-bmj9o2jlvj] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.875rem 1.5rem;
    border: none;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    margin-top: 0.5rem;
}

.login-button:hover:not(:disabled)[b-bmj9o2jlvj] {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
}

.login-button:active:not(:disabled)[b-bmj9o2jlvj] {
    transform: translateY(0);
}

.login-button:disabled[b-bmj9o2jlvj] {
    opacity: 0.6;
    cursor: not-allowed;
}

@media (max-width: 640px) {
    .login-card[b-bmj9o2jlvj] {
        padding: 2rem;
    }

    .login-header h2[b-bmj9o2jlvj] {
        font-size: 1.5rem;
    }
}
/* /Pages/SearchDocument.razor.rz.scp.css */
.search-page[b-glnuohgnu5] {
    display: flex;
    flex-direction: column;
    height: calc(100vh - 100px);
    overflow: hidden;
}

.search-header[b-glnuohgnu5] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #e5e7eb;
    background-color: #ffffff;
    flex-shrink: 0;
}

.search-header h3[b-glnuohgnu5] {
    margin: 0;
    color: #111827;
}

.search-header button[b-glnuohgnu5] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.search-layout[b-glnuohgnu5] {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    flex: 1;
    min-height: 0;
    position: relative;
    transition: grid-template-columns 0.3s ease;
}

/* Layout adjustment when document panel is visible */
.search-layout.with-panel[b-glnuohgnu5] {
    grid-template-columns: 1fr minmax(350px, 450px);
}

.search-main[b-glnuohgnu5] {
    display: flex;
    flex-direction: column;
    min-width: 0;
    height: 100%;
    overflow: hidden;
}

.search-container[b-glnuohgnu5] {
    padding: 1.5rem;
    border-bottom: 1px solid #e5e7eb;
    background-color: #f9fafb;
    flex-shrink: 0;
}

.search-input-group[b-glnuohgnu5] {
    display: flex;
    gap: 0.75rem;
    max-width: 700px;
    margin: 0 auto;
    align-items: center;
}

.search-input[b-glnuohgnu5] {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: all 0.2s ease;
}

.search-input:focus[b-glnuohgnu5] {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.search-input:disabled[b-glnuohgnu5] {
    background-color: #f3f4f6;
    cursor: not-allowed;
    opacity: 0.6;
}

.search-options[b-glnuohgnu5] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.search-label[b-glnuohgnu5] {
    font-size: 0.875rem;
    color: #6b7280;
    font-weight: 500;
    margin: 0;
    white-space: nowrap;
}

.search-number-input[b-glnuohgnu5] {
    width: 4rem;
    padding: 0.75rem 0.5rem;
    border: 2px solid #e5e7eb;
    border-radius: 0.5rem;
    font-size: 1rem;
    text-align: center;
    transition: all 0.2s ease;
}

.search-number-input:focus[b-glnuohgnu5] {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.search-number-input:disabled[b-glnuohgnu5] {
    background-color: #f3f4f6;
    cursor: not-allowed;
    opacity: 0.6;
}

/* Hide number input spinners in Chrome, Safari, Edge, Opera */
.search-number-input[b-glnuohgnu5]::-webkit-outer-spin-button,
.search-number-input[b-glnuohgnu5]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Hide number input spinners in Firefox */
.search-number-input[type=number][b-glnuohgnu5] {
    -moz-appearance: textfield;
}

.search-button[b-glnuohgnu5] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background-color: #3b82f6;
    color: white;
    border: none;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.search-button:hover:not(:disabled)[b-glnuohgnu5] {
    background-color: #2563eb;
}

.search-button:disabled[b-glnuohgnu5] {
    opacity: 0.6;
    cursor: not-allowed;
}

.search-button svg[b-glnuohgnu5] {
    width: 20px;
    height: 20px;
}

.spinner-border-sm[b-glnuohgnu5] {
    width: 1rem;
    height: 1rem;
    border-width: 0.15rem;
}

.documents-section[b-glnuohgnu5] {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 1.5rem;
    min-height: 0;
}

.search-results-header[b-glnuohgnu5] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.search-results-header h4[b-glnuohgnu5] {
    margin: 0;
    color: #374151;
    font-size: 1.25rem;
}

.results-count[b-glnuohgnu5] {
    font-size: 0.875rem;
    color: #6b7280;
    font-weight: 500;
}

.document-list[b-glnuohgnu5] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.document-item[b-glnuohgnu5] {
    display: flex;
    gap: 1rem;
    padding: 1.25rem;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    transition: all 0.2s ease;
    cursor: pointer;
}

.document-item:hover[b-glnuohgnu5] {
    border-color: #3b82f6;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.15);
    transform: translateY(-2px);
}

.document-item.selected[b-glnuohgnu5] {
    border-color: #3b82f6;
    background-color: #eff6ff;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.15);
}

.document-number[b-glnuohgnu5] {
    flex-shrink: 0;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    font-weight: 700;
    font-size: 0.875rem;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(59, 130, 246, 0.2);
}

.document-item.selected .document-number[b-glnuohgnu5] {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    box-shadow: 0 2px 6px rgba(59, 130, 246, 0.3);
}

.document-icon[b-glnuohgnu5] {
    flex-shrink: 0;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3b82f6;
}

.document-icon svg[b-glnuohgnu5] {
    width: 100%;
    height: 100%;
}

.document-details[b-glnuohgnu5] {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.document-header[b-glnuohgnu5] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.25rem;
}

.document-details h5[b-glnuohgnu5] {
    margin: 0;
    color: #111827;
    font-size: 1rem;
    font-weight: 600;
    word-break: break-word;
    flex: 1;
    min-width: 0;
}

.document-scores[b-glnuohgnu5] {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.document-score[b-glnuohgnu5] {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    padding: 0.25rem 0.625rem;
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 1rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    cursor: help;
    transition: all 0.2s ease;
}

.document-score:hover[b-glnuohgnu5] {
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.reranker-score[b-glnuohgnu5] {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
}

.reranker-score:hover[b-glnuohgnu5] {
    background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%);
}

.hybrid-score[b-glnuohgnu5] {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

.score-icon[b-glnuohgnu5] {
    width: 0.875rem;
    height: 0.875rem;
}

.document-item.selected .document-score[b-glnuohgnu5] {
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.document-item.selected .reranker-score[b-glnuohgnu5] {
    background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%);
}

.document-item.selected .hybrid-score[b-glnuohgnu5] {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
}

.document-path[b-glnuohgnu5] {
    font-size: 0.75rem;
    color: #9ca3af;
    display: block;
    word-break: break-all;
}

.no-results[b-glnuohgnu5] {
    text-align: center;
    padding: 3rem 2rem;
    color: #9ca3af;
}

.no-results svg[b-glnuohgnu5] {
    margin-bottom: 1rem;
    opacity: 0.5;
}

.no-results p[b-glnuohgnu5] {
    margin: 0.5rem 0;
    font-size: 1rem;
}

.no-results .text-muted[b-glnuohgnu5] {
    font-size: 0.875rem;
    color: #9ca3af;
}

.alert[b-glnuohgnu5] {
    padding: 0.75rem 1rem;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    margin-top: 1rem;
}

.alert-danger[b-glnuohgnu5] {
    background-color: #fee2e2;
    border: 1px solid #fecaca;
    color: #991b1b;
}

.me-2[b-glnuohgnu5] {
    margin-right: 0.5rem;
}

.mt-3[b-glnuohgnu5] {
    margin-top: 1rem;
}

.results-info[b-glnuohgnu5] {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.domain-badge[b-glnuohgnu5] {
    background-color: #e3f2fd;
    color: #1976d2;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.search-input:disabled[b-glnuohgnu5],
.search-number-input:disabled[b-glnuohgnu5],
.search-button:disabled[b-glnuohgnu5] {
    cursor: not-allowed;
    opacity: 0.6;
}

.alert .bi[b-glnuohgnu5] {
    vertical-align: text-bottom;
}

/* Responsive */
@media (max-width: 1024px) {
    .search-layout.with-panel[b-glnuohgnu5] {
        grid-template-columns: 1fr;
    }

    .search-page[b-glnuohgnu5] {
        height: auto;
        min-height: calc(100vh - 100px);
    }

    .search-input-group[b-glnuohgnu5] {
        flex-wrap: wrap;
        max-width: 100%;
    }

    .search-input[b-glnuohgnu5] {
        width: 100%;
        flex: 1 1 100%;
    }

    .search-options[b-glnuohgnu5] {
        order: 3;
    }

    .search-button[b-glnuohgnu5] {
        flex: 1 1 auto;
        justify-content: center;
    }

    .search-results-header[b-glnuohgnu5] {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .document-item[b-glnuohgnu5] {
        padding: 1rem;
    }
}

@media (max-width: 640px) {
    .search-container[b-glnuohgnu5] {
        padding: 1rem;
    }

    .search-input-group[b-glnuohgnu5] {
        gap: 0.5rem;
    }

    .search-options[b-glnuohgnu5] {
        width: 100%;
        justify-content: space-between;
    }

    .search-button[b-glnuohgnu5] {
        width: 100%;
    }
}

/* Welcome Panel with Sample Queries */
.welcome-panel[b-glnuohgnu5] {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 3rem 2rem;
    color: #6b7280;
}

.welcome-icon[b-glnuohgnu5] {
    margin-bottom: 1rem;
    opacity: 0.5;
    color: #3b82f6;
}

.welcome-panel h4[b-glnuohgnu5] {
    margin: 0 0 0.5rem 0;
    color: #374151;
    font-size: 1.25rem;
    font-weight: 600;
}

.welcome-panel > p[b-glnuohgnu5] {
    margin: 0;
    font-size: 0.875rem;
}

/* Sample Queries Section */
.sample-queries-section[b-glnuohgnu5] {
    margin-top: 2rem;
    width: 100%;
    max-width: 600px;
}

.sample-queries-label[b-glnuohgnu5] {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 1rem;
    font-weight: 500;
}

.sample-queries-list[b-glnuohgnu5] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: stretch;
}

.sample-query-button[b-glnuohgnu5] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.25rem;
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: left;
    color: #374151;
    font-size: 0.9375rem;
    line-height: 1.4;
}

.sample-query-button:hover:not(:disabled)[b-glnuohgnu5] {
    background-color: #eff6ff;
    border-color: #3b82f6;
    color: #1d4ed8;
    transform: translateX(4px);
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.15);
}

.sample-query-button:disabled[b-glnuohgnu5] {
    opacity: 0.6;
    cursor: not-allowed;
}

.sample-query-button .query-icon[b-glnuohgnu5] {
    flex-shrink: 0;
    color: #3b82f6;
    opacity: 0.7;
}

.sample-query-button:hover:not(:disabled) .query-icon[b-glnuohgnu5] {
    opacity: 1;
}

.sample-query-button span[b-glnuohgnu5] {
    flex: 1;
}

.loading-queries[b-glnuohgnu5] {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1.5rem;
    color: #6b7280;
    font-size: 0.875rem;
}

/* Responsive adjustments for sample queries */
@media (max-width: 640px) {
    .welcome-panel[b-glnuohgnu5] {
        padding: 2rem 1rem;
    }

    .sample-queries-section[b-glnuohgnu5] {
        max-width: 100%;
    }

    .sample-query-button[b-glnuohgnu5] {
        padding: 0.75rem 1rem;
        font-size: 0.875rem;
    }
}
