@import '_content/Microsoft.FluentUI.AspNetCore.Components/Microsoft.FluentUI.AspNetCore.Components.ewdlgswx1m.bundle.scp.css';

/* /Components/ActionTile.razor.rz.scp.css */
.action-tile[b-ae47b1000p] {
    background-color: white;
    border-radius: 0.75rem;
    box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    border: 1px solid rgb(243 244 246);
    padding: 1.5rem;
    transition-property: all;
    transition-duration: 300ms;
    cursor: pointer;
}

    .action-tile:hover[b-ae47b1000p] {
        box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
        border-color: rgba(0, 66, 37, 0.2);
    }

.action-tile-content[b-ae47b1000p] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.action-tile-icon-wrapper[b-ae47b1000p] {
    padding: 0.75rem;
    /*    background-color: rgba(0, 66, 37, 0.1);*/
    background-color: color-mix(in srgb, var(--accent-fill-rest) 10%, transparent);
    border-radius: 0.5rem;
    width: fit-content;
    transition-colors: 300ms;
}

.action-tile:hover .action-tile-icon-wrapper[b-ae47b1000p] {
    background-color: color-mix(in srgb, var(--accent-fill-rest) 50%, transparent);
}

.action-tile-icon[b-ae47b1000p] {
    color: rgb(0, 66, 37);
    transition-colors: 300ms;
}

.action-tile:hover .action-tile-icon[b-ae47b1000p] {
/*    color: white;*/
}

.action-tile-title[b-ae47b1000p] {
    font-weight: 600;
    font-size: 1.125rem;
    line-height: 1.75rem;
    color: rgb(17 24 39);
}

.action-tile-description[b-ae47b1000p] {
    color: rgb(75 85 99);
    font-size: 0.875rem;
}
/* /Components/AudioRecorder.razor.rz.scp.css */
/* style.css*/

/* Media Queries */

/* Small Devices*/

@media (min-width: 0px) {
    *[b-78o5vh67oq] {
        box-sizing: border-box;
    }

    .audio-button-group[b-78o5vh67oq] {
        display: flex;
        justify-content: center;
        position: fixed;
        bottom: 50px;
        width: 100%;
    }

    .start-recording-button[b-78o5vh67oq] {
        font-size: 70px;
        color: #435f7a;
        cursor: pointer;
        opacity: .5;
        margin-bottom: 30px;
    }

        .start-recording-button:hover[b-78o5vh67oq] {
            opacity: 1;
        }

    .no-project-selected-warning[b-78o5vh67oq] {
        color:red;
    }

    .audio-recording-container[b-78o5vh67oq] {
        width: 100%;
        height: 10vh;
        /* view port height*/
        /*targeting Chrome & Safari*/
        display: -webkit-flex;
        /*targeting IE10*/
        display: -ms-flex;
        display: flex;
        flex-direction: column;
        justify-content: center;
        /*horizontal centering*/
        align-items: center;
        margin-top:100px;
    }

    .recording-control-buttons-container[b-78o5vh67oq] {
        /*targeting Chrome & Safari*/
        display: -webkit-flex;
        /*targeting IE10*/
        display: -ms-flex;
        display: flex;
        justify-content: space-evenly;
        /*horizontal centering*/
        align-items: center;
        width: 334px;
        margin-bottom: 30px;
    }

    .recording-elapsed-time[b-78o5vh67oq] {
        /*targeting Chrome & Safari*/
        display: -webkit-flex;
        /*targeting IE10*/
        display: -ms-flex;
        display: flex;
        justify-content: center;
        /*horizontal centering*/
        align-items: center;
    }

    .red-recording-dot[b-78o5vh67oq] {
        font-size: 25px;
        color: red;
        margin-right: 12px;
        /*transitions with Firefox, IE and Opera Support browser support*/
        animation-name: flashing-recording-dot-b-78o5vh67oq;
        -webkit-animation-name: flashing-recording-dot;
        -moz-animation-name: flashing-recording-dot;
        -o-animation-name: flashing-recording-dot;
        animation-duration: 2s;
        -webkit-animation-duration: 2s;
        -moz-animation-duration: 2s;
        -o-animation-duration: 2s;
        animation-iteration-count: infinite;
        -webkit-animation-iteration-count: infinite;
        -moz-animation-iteration-count: infinite;
        -o-animation-iteration-count: infinite;
    }
    /* The animation code */
    @keyframes flashing-recording-dot-b-78o5vh67oq {
        0% {
            opacity: 1;
        }

        50% {
            opacity: 0;
        }

        100% {
            opacity: 1;
        }
    }

    @-webkit-keyframes flashing-recording-dot {
        0% {
            opacity: 1;
        }

        50% {
            opacity: 0;
        }

        100% {
            opacity: 1;
        }
    }

    @-moz-keyframes flashing-recording-dot {
        0% {
            opacity: 1;
        }

        50% {
            opacity: 0;
        }

        100% {
            opacity: 1;
        }
    }

    @-o-keyframes flashing-recording-dot {
        0% {
            opacity: 1;
        }

        50% {
            opacity: 0;
        }

        100% {
            opacity: 1;
        }
    }

    .elapsed-time[b-78o5vh67oq] {
        font-size: 32px;
    }

    .debug-window[b-78o5vh67oq] {
        margin-top: 20px;
        border: 2px solid #435f7a;
        border-radius: 8px;
        background-color: #1e1e1e;
        color: #d4d4d4;
        font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
        font-size: 12px;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }

    .debug-window-header[b-78o5vh67oq] {
        display: flex;
        background-color: #2d2d30;
        padding: 8px 12px;
        border-bottom: 1px solid #435f7a;
        font-weight: bold;
        border-top-left-radius: 6px;
        border-top-right-radius: 6px;
    }

    .debug-window-content[b-78o5vh67oq] {
        height: 300px;
        overflow-y: auto;
        padding: 10px;
        background-color: #1e1e1e;
        border-bottom-left-radius: 6px;
        border-bottom-right-radius: 6px;
    }

    .debug-message[b-78o5vh67oq] {
        margin-bottom: 4px;
        word-wrap: break-word;
        line-height: 1.4;
    }

    .debug-timestamp[b-78o5vh67oq] {
        color: #808080;
        margin-right: 8px;
    }

    .debug-text[b-78o5vh67oq] {
        color: #d4d4d4;
    }

    .debug-message.info .debug-text[b-78o5vh67oq] {
        color: #4ec9b0;
    }

    .debug-message.error .debug-text[b-78o5vh67oq] {
        color: #f48771;
        font-weight: bold;
    }

    .debug-message.warning .debug-text[b-78o5vh67oq] {
        color: #dcdcaa;
    }

    /* Medium devices */

    @media (min-width: 768px) {
    }

    /* Large devices */

    @media (min-width: 992px) {
    }

    /*Ipad pro view*/

    /* 
  @media (min-width: 1024px) {
  
  } */

    /* Extra Large devices */

    @media (min-width: 1200px) {
    }
}
/* /Components/ChatCitation.razor.rz.scp.css */
.citation[b-3yllsb2hqg] {
    display: inline-flex;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
    margin-top: 1rem;
    margin-right: 1rem;
    border-bottom: 2px solid #F27A83;
    gap: 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.875rem;
    line-height: 1.25rem;
    background-color: #ffffff;
}

    .citation:hover[b-3yllsb2hqg] {
        outline: 1px solid #865cb1;
    }

    .citation svg[b-3yllsb2hqg] {
        width: 1.5rem;
        height: 1.5rem;
    }

    .citation:active[b-3yllsb2hqg] {
        background-color: rgba(0,0,0,0.05);
    }

.citation-content[b-3yllsb2hqg] {
    display: flex;
    flex-direction: column;
}

.citation-file[b-3yllsb2hqg] {
    font-weight: 600;
}
.getting-started-container[b-3yllsb2hqg] {
    padding-top: 0.75rem;
}

.getting-started-card[b-3yllsb2hqg] {
    border-radius: 0.5rem;
}

.getting-started[b-3yllsb2hqg] {
    display: inline-flex;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
    margin-top: 1rem;
    margin-right: 1rem;
    border-bottom: 2px solid #F27A83;
    gap: 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.875rem;
    line-height: 1.25rem;
    background-color: #ffffff;
    cursor: pointer;
    -webkit-text-decoration: none;
    text-decoration: none;
}

    .getting-started:hover[b-3yllsb2hqg] {
        outline: 1px solid #F27A83;
    }

    .getting-started svg[b-3yllsb2hqg] {
        width: 1.5rem;
        height: 1.5rem;
    }

    .getting-started:active[b-3yllsb2hqg] {
        background-color: rgba(0,0,0,0.05);
    }

.getting-started-content[b-3yllsb2hqg] {
    display: flex;
    flex-direction: column;
}

.getting-started-file[b-3yllsb2hqg] {
    font-weight: 600;
}
/* /Components/ChatCompletionFailed.razor.rz.scp.css */
.message-list-container[b-01eh250hyb] {
    margin: 2rem 1.5rem;
    flex-grow: 1;
}

.message-list[b-01eh250hyb] {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.failed-message[b-01eh250hyb] {
    display:flex;
    align-content:center;
    background-color: white;
    align-self: flex-end;
    min-width: 25%;
    max-width: calc(100% - 5rem);
    padding-left: 1rem;
    border-radius: 20px;
    border: dotted;
    white-space: pre-wrap;
}
.resubmit-button[b-01eh250hyb] {
    display: flex;
    align-self: flex-end;
    max-width: calc(100% - 5rem);
    padding: 0.5rem 1.25rem;
    white-space: pre-wrap;
}
/* /Components/ChatHeader.razor.rz.scp.css */
.chat-header-container[b-yr8vcz66f3] {
    top: 0; 
    padding: 1.5rem; 
}

.chat-header-controls[b-yr8vcz66f3] {
    margin-bottom: 1.5rem; 
}

h1[b-yr8vcz66f3] {
    overflow: hidden;
    text-overflow: ellipsis;
}

.new-chat-icon[b-yr8vcz66f3] {
    width: 1.25rem;
    height: 1.25rem;
    color: rgb(55, 65, 81);
}

@media (min-width: 768px) {
    .chat-header-container[b-yr8vcz66f3] {
        position: sticky;
    }
}
/* /Components/ChatInput.razor.rz.scp.css */
.input-box[b-irafx4fo65] {
    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-irafx4fo65] {
        outline: 2px solid #4152d5;
    }

.ai-warning[b-irafx4fo65] {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: small;
    margin-top: 0.5rem;
    color: #aaa;
}

textarea[b-irafx4fo65] {
    resize: none;
    border: none;
    outline: none;
    flex-grow: 1;
}

    textarea:placeholder-shown + .tools[b-irafx4fo65] {
        --send-button-color: #aaa;
    }

.tools[b-irafx4fo65] {
    display: flex;
    margin-top: 1rem;
    align-items: center;
    gap: 0.5rem;
}

.tool-icon[b-irafx4fo65] {
    width: 1.25rem;
    height: 1.25rem;
}

.send-button[b-irafx4fo65] {
    color: var(--send-button-color);
    margin-left: auto;
}

    .send-button:hover[b-irafx4fo65] {
        color: black;
    }

.attach[b-irafx4fo65] {
    background-color: white;
    border-style: dashed;
    color: #888;
    border-color: #888;
    padding: 3px 8px;
}

    .attach:hover[b-irafx4fo65] {
        background-color: #f0f0f0;
        color: black;
    }

.select-content-menu[b-irafx4fo65] {
    position: relative;
}

.select-content-dropdown[b-irafx4fo65] {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    min-width: 160px;
    overflow: hidden;
}

.menu-item[b-irafx4fo65] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem;
    cursor: pointer;
    font-size: 0.875rem;
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.2s ease;
}

    .menu-item:hover:not(.disabled)[b-irafx4fo65] {
        background-color: #f5f5f5;
    }

    .menu-item:last-child[b-irafx4fo65] {
        border-bottom: none;
    }

    .menu-item.disabled[b-irafx4fo65] {
        opacity: 0.5;
        cursor: not-allowed;
        color: #666;
    }

    .menu-item fluent-icon[b-irafx4fo65] {
        width: 16px;
        height: 16px;
    }
/* /Components/ChatMessageItem.razor.rz.scp.css */
.user-message[b-kqt7kajniy] {
    background: var(--dabalox-secondary-light-colour);
    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;
    border-radius: 12px;
}

.attachments-container[b-kqt7kajniy] {
    display: flex;
    flex-wrap: wrap;
    justify-content:right;
}

.attached-file[b-kqt7kajniy] {
    display: inline-flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 1.0);
    border-radius: 12px;
    padding: 0.2rem 0.4rem;
    margin: 0.1rem -0.4rem 0.1rem 0.5rem;
    font-size: 0.75rem;
    gap: 0.25rem;
    cursor:help;
}

.attached-file .file-name[b-kqt7kajniy] {
    max-width: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.assistant-message[b-kqt7kajniy], .assistant-search[b-kqt7kajniy] {
    display: grid;
    grid-template-rows: min-content;
    grid-template-columns: 2rem minmax(0, 1fr);
    gap: 0.25rem;
}

.assistant-message-header[b-kqt7kajniy] {
    font-weight: 600;
}

.assistant-message-text[b-kqt7kajniy] {
    grid-column-start: 2;
}

.assistant-message-icon[b-kqt7kajniy] {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 9999px;
    width: 1.5rem;
    height: 1.5rem;
    color: #ffffff;
    background: #F27A83;
}

    .assistant-message-icon svg[b-kqt7kajniy] {
        width: 1rem;
        height: 1rem;
    }

.assistant-search[b-kqt7kajniy] {
    font-size: 0.875rem;
    line-height: 1.25rem;
}

.assistant-search-icon[b-kqt7kajniy] {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 1.5rem;
    height: 1.5rem;
}

    .assistant-search-icon svg[b-kqt7kajniy] {
        width: 1rem;
        height: 1rem;
    }

.assistant-search-content[b-kqt7kajniy] {
    align-content: center;
}

.assistant-search-phrase[b-kqt7kajniy] {
    font-weight: 600;
}

/* Default styling for markdown-formatted assistant messages */
[b-kqt7kajniy] ul {
    list-style-type: disc;
    margin-left: 1.5rem;
}

[b-kqt7kajniy] ol {
    list-style-type: decimal;
    margin-left: 1.5rem;
}

[b-kqt7kajniy] li {
    margin: 0.5rem 0;
}

[b-kqt7kajniy] strong {
    font-weight: 600;
}

[b-kqt7kajniy] h3 {
    margin: 1rem 0;
    font-weight: 600;
}

[b-kqt7kajniy] p + p {
    margin-top: 1rem;
}

[b-kqt7kajniy] table {
    margin: 1rem 0;
}

[b-kqt7kajniy] th {
    text-align: left;
    border-bottom: 1px solid silver;
}

[b-kqt7kajniy] th, [b-kqt7kajniy] td {
    padding: 0.1rem 0.5rem;
}

[b-kqt7kajniy] th, [b-kqt7kajniy] tr:nth-child(even) {
    background-color: rgba(0, 0, 0, 0.05);
}
/* /Components/ChatMessageItemActions.razor.rz.scp.css */
.chat-response-actions[b-t4pb24woct] {
    display: flex;
    gap: 8px;
    padding: 4px;
}
/* /Components/ChatMessageList.razor.rz.scp.css */
.message-list-container[b-ol9rmj5o2v] {
    margin: 2rem 1.5rem;
    flex-grow: 1;
}

.message-list[b-ol9rmj5o2v] {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.no-messages[b-ol9rmj5o2v] {
    text-align: center;
    font-size: 1.25rem;
    color: #999;
    margin-top: calc(40vh - 18rem);
}

chat-messages[b-ol9rmj5o2v] >  div:last-of-type {
    /* Adds some vertical buffer to so that suggestions don't overlap the output when they appear */
    margin-bottom: 2rem;
}
.waitingMessage[b-ol9rmj5o2v] {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -2rem;
    color: var(--accent-fill-rest);
    font-weight:bold;
}
/*.assistant-message{
    scroll-behavior: smooth;
}*/
/* /Components/ChatSuggestions.razor.rz.scp.css */
.suggestions[b-w2w6aic1dg] {
    text-align: right;
    white-space: nowrap;
    gap: 0.5rem;
    justify-content: flex-end;
    flex-wrap: wrap;
    display: flex;
    margin-bottom: 0.75rem;
}
/* /Components/ContactItem.razor.rz.scp.css */
.contact-item[b-19a3tbxgqb] {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    cursor: pointer;
    border-bottom: 1px solid var(--neutral-stroke-divider-rest);
    transition: background-color 0.2s ease;
}

.contact-item:hover[b-19a3tbxgqb] {
    background-color: var(--neutral-fill-secondary-hover);
}

.contact-item.selected[b-19a3tbxgqb] {
    background-color: var(--neutral-fill-secondary-rest);
    border-left: 3px solid var(--accent-fill-rest);
}

.contact-icon[b-19a3tbxgqb] {
    flex-shrink: 0;
    margin-right: 12px;
}

.contact-details[b-19a3tbxgqb] {
    flex: 1;
    min-width: 0;
    overflow: hidden;
}

.contact-header[b-19a3tbxgqb] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4px;
}

.contact-name[b-19a3tbxgqb] {
    font-weight: 600;
    font-size: 14px;
    color: var(--neutral-foreground-rest);
}

.contact-last-message[b-19a3tbxgqb] {
    font-size: 12px;
    color: var(--neutral-foreground-hint);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.last-message-sender[b-19a3tbxgqb] {
    font-weight: 500;
    margin-right: 4px;
}

.last-message-text[b-19a3tbxgqb] {
    font-weight: 400;
}
/* /Components/ContactsList.razor.rz.scp.css */
.contacts-container[b-0cim8pkbxr] {
    height: 100%;
    display: flex;
    flex-direction: column;
    border-right: 1px solid var(--neutral-stroke-divider-rest);
    background-color: var(--neutral-layer-1);
}

.contacts-header[b-0cim8pkbxr] {
    padding: 16px;
    border-bottom: 1px solid var(--neutral-stroke-divider-rest);
    background-color: var(--neutral-layer-2);
}

.contacts-list[b-0cim8pkbxr] {
    flex: 1;
    overflow-y: auto;
}

.contacts-loading[b-0cim8pkbxr],
.contacts-empty[b-0cim8pkbxr] {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 32px 16px;
    text-align: center;
}
/* /Components/DictationButtons.razor.rz.scp.css */
.dictate-button[b-2ghxeekmoi] {
    color: #4152d5;
}

    .dictate-button:hover:not(:disabled)[b-2ghxeekmoi] {
        color: #2937a8;
    }

    .dictate-button:disabled[b-2ghxeekmoi] {
        color: #ccc;
        cursor: not-allowed;
    }

.dictate-cancel-button[b-2ghxeekmoi] {
    color: #d32f2f;
}

    .dictate-cancel-button:hover[b-2ghxeekmoi] {
        color: #9a0007;
    }

.dictate-accept-button[b-2ghxeekmoi] {
    color: #2e7d32;
}

    .dictate-accept-button:hover[b-2ghxeekmoi] {
        color: #1b5e20;
    }
/* /Components/FailedRecordings.razor.rz.scp.css */
.failed-recordings-container[b-tg2r9p28ub] {
    margin-top: 1rem;
    padding: 1rem;
    border: 1px solid #d1d5db;
    border-radius: 0.375rem;
    background-color: #fef3c7;
}

.failed-recordings-header[b-tg2r9p28ub] {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.failed-recordings-title[b-tg2r9p28ub] {
    color: #d97706;
    font-weight: 600;
    margin: 0;
}
.failed-recordings-explanation[b-tg2r9p28ub] {
    margin-bottom: 25px;
}

.retry-button[b-tg2r9p28ub] {
    font-size: 0.5rem;
}

.missing-audio-text[b-tg2r9p28ub] {
    color: #dc2626;
    font-weight: 500;
}
/* /Components/FeedbackDialog.razor.rz.scp.css */
.feedback-dialog-validation-message[b-1v0dqkqt9w] {
    color: red;
}
/* /Components/FileSelector.razor.rz.scp.css */
.file-selector[b-kpon6hlslr] {
    margin-bottom: 0.5rem;
}

.selected-files[b-kpon6hlslr] {
    margin-bottom: 0.5rem;
    margin-left: 0.5rem;
}

.selected-files h5[b-kpon6hlslr] {
    margin: 0 0 0.25rem 0;
    font-size: 0.875rem;
    color: #666;
}

.file-list[b-kpon6hlslr] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem;
}

.selected-file[b-kpon6hlslr] {
    display: flex;
    align-items: center;
    background-color: #e3f2fd;
    border: 1px solid #bbdefb;
    border-radius: 16px;
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
    gap: 0.25rem;
}

.selected-file .file-name[b-kpon6hlslr] {
    max-width: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.file-picker[b-kpon6hlslr] {
    position: relative;
}

.file-picker-dropdown[b-kpon6hlslr] {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    max-height: 400px;
    overflow-y: auto;
    min-width: 300px;
}

.file-picker-header[b-kpon6hlslr] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem;
    border-bottom: 1px solid #eee;
    font-weight: 600;
    font-size: 0.875rem;
}

/* Project selection styles */
.project-list[b-kpon6hlslr] {
    padding: 0.25rem;
}

.project-item[b-kpon6hlslr] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    cursor: pointer;
    border-radius: 6px;
    transition: background-color 0.2s ease;
    border: 1px solid transparent;
}

.project-item:hover[b-kpon6hlslr] {
    background-color: #f8f9fa;
    border-color: #dee2e6;
}

.project-item:active[b-kpon6hlslr] {
    background-color: #e9ecef;
}

.project-details[b-kpon6hlslr] {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.project-details .project-name[b-kpon6hlslr] {
    font-weight: 600;
    font-size: 0.875rem;
    color: #212529;
}

.project-details .file-count[b-kpon6hlslr] {
    font-size: 0.75rem;
    color: #6c757d;
}

.no-projects[b-kpon6hlslr] {
    padding: 2rem 1rem;
    text-align: center;
    color: #6c757d;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex-direction: column;
    font-size: 0.875rem;
}

/* File selection view styles */
.file-list-view[b-kpon6hlslr] {
    padding: 0.25rem;
}

.selected-project-name[b-kpon6hlslr] {
    flex: 1;
    text-align: center;
    font-weight: 600;
    font-size: 0.875rem;
    color: #495057;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Update file-picker-header for new layout */
.file-picker-header[b-kpon6hlslr] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem;
    border-bottom: 1px solid #eee;
    font-weight: 600;
    font-size: 0.875rem;
    gap: 0.5rem;
}

.available-files[b-kpon6hlslr] {
    padding: 0.25rem;
}

.available-file[b-kpon6hlslr] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    cursor: pointer;
    border-radius: 4px;
    font-size: 0.875rem;
}

.available-file:hover[b-kpon6hlslr] {
    background-color: #f5f5f5;
}

.available-file .file-name[b-kpon6hlslr] {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.available-file .file-size[b-kpon6hlslr] {
    color: #666;
    font-size: 0.75rem;
}

.no-files[b-kpon6hlslr] {
    padding: 1rem;
    text-align: center;
    color: #666;
    font-style: italic;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex-direction: column;
}

.loading-projects[b-kpon6hlslr] {
    padding: 1rem;
    text-align: center;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    .file-picker-dropdown[b-kpon6hlslr] {
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 90vw;
        max-width: 400px;
        height: 60vh;
        border-radius: 12px;
        max-height: 60vh;
    }

    .selected-file .file-name[b-kpon6hlslr] {
        max-width: 120px;
    }

    .file-list[b-kpon6hlslr] {
        gap: 0.125rem;
    }

    .selected-file[b-kpon6hlslr] {
        font-size: 0.8rem;
    }

    .project-item[b-kpon6hlslr] {
        padding: 0.6rem;
        gap: 0.6rem;
    }

    .project-details .project-name[b-kpon6hlslr] {
        font-size: 0.8rem;
    }

    .project-details .file-count[b-kpon6hlslr] {
        font-size: 0.7rem;
    }

    .selected-project-name[b-kpon6hlslr] {
        font-size: 0.8rem;
    }

    .file-picker-header[b-kpon6hlslr] {
        padding: 0.4rem;
        font-size: 0.8rem;
    }

    .available-file[b-kpon6hlslr] {
        font-size: 0.8rem;
        padding: 0.4rem 0.5rem;
    }

    .no-files[b-kpon6hlslr], .no-projects[b-kpon6hlslr] {
        font-size: 0.8rem;
        padding: 1.5rem 1rem;
    }
}

/* Ensure proper z-index stacking */
.file-picker-dropdown[b-kpon6hlslr] {
    z-index: 1000;
}
/* /Components/GettingStarted.razor.rz.scp.css */
.getting-started-container[b-ddwbk4hjpb] {
    padding-top: 0.75rem;
}
.getting-started-card[b-ddwbk4hjpb] {
    border-radius: 0.5rem;
}

.getting-started[b-ddwbk4hjpb] {
    display: inline-flex;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
    margin-top: 1rem;
    margin-right: 1rem;
    border-bottom: 2px solid #a770de;
    gap: 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.875rem;
    line-height: 1.25rem;
    background-color: #ffffff;
    cursor: pointer;
    -webkit-text-decoration: none;
    text-decoration: none;
}

    .getting-started:hover[b-ddwbk4hjpb] {
        outline: 1px solid #865cb1;
    }

    .getting-started svg[b-ddwbk4hjpb] {
        width: 1.5rem;
        height: 1.5rem;
    }

    .getting-started:active[b-ddwbk4hjpb] {
        background-color: rgba(0,0,0,0.05);
    }

.getting-started-content[b-ddwbk4hjpb] {
    display: flex;
    flex-direction: column;
}

.getting-started-file[b-ddwbk4hjpb] {
    font-weight: 600;
}
/* /Components/GridCardLayout.razor.rz.scp.css */
*[b-jdljcamrdc] {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body[b-jdljcamrdc] {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #1F2937;
    background: linear-gradient(135deg, #004225 0%, #006837 100%);
    min-height: 100vh;
}

.logo[b-jdljcamrdc] {
    font-size: 2rem;
    font-weight: bold;
    color: #F9FAFB;
    text-decoration: none;
}

.features[b-jdljcamrdc] {
    background: #F8FAFC;
    margin-top:-0.5rem;
}

.features-container[b-jdljcamrdc] {
    max-width: 1200px;
    margin: 0 auto;
}

.features-grid[b-jdljcamrdc] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card-disabled[b-jdljcamrdc] {
    background: #F3F4F6;
    color: #9CA3AF;
    opacity: 0.6;
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #E5E7EB;
    position: relative;
    overflow: hidden;
    pointer-events: none;
    cursor: not-allowed;
}

.feature-card[b-jdljcamrdc] {
    background: #FFFFFF;
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #E5E7EB;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

    .feature-card[b-jdljcamrdc]::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, var(--dabalox-primary-accent-colour), var(--dabalox-secondary-mid-colour));
    }

    .feature-card:hover[b-jdljcamrdc] {
        transform: translateY(-5px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    }

.feature-icon[b-jdljcamrdc] {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--dabalox-secondary-dark-colour), var(--dabalox-primary-accent-colour));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    box-shadow: 0 8px 20px rgba(0, 66, 37, 0.3);
}

.feature-title[b-jdljcamrdc] {        /* Title within a feaure card */
    font-size: 1.5rem;
    color: #004225;
    margin-bottom: 1rem;
    font-weight: 600;
}

.feature-description[b-jdljcamrdc] {
    color: #6B7280;
    font-size: 1rem;
    line-height: 1.6;
}
/* /Components/LoadingSpinner.razor.rz.scp.css */
/* Used under CC0 license */

.lds-ellipsis[b-07y1evbw7y] {
    color: #029676;
    animation: fade-in-b-07y1evbw7y 1s;
}

@keyframes fade-in-b-07y1evbw7y {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.lds-ellipsis[b-07y1evbw7y],
.lds-ellipsis div[b-07y1evbw7y] {
    box-sizing: border-box;
}

.lds-ellipsis[b-07y1evbw7y] {
    margin: auto;
    display: block;
    position: relative;
    width: 80px;
    height: 80px;
}

    .lds-ellipsis div[b-07y1evbw7y] {
        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-07y1evbw7y] {
            left: 8px;
            animation: lds-ellipsis1-b-07y1evbw7y 0.6s infinite;
        }

        .lds-ellipsis div:nth-child(2)[b-07y1evbw7y] {
            left: 8px;
            animation: lds-ellipsis2-b-07y1evbw7y 0.6s infinite;
        }

        .lds-ellipsis div:nth-child(3)[b-07y1evbw7y] {
            left: 32px;
            animation: lds-ellipsis2-b-07y1evbw7y 0.6s infinite;
        }

        .lds-ellipsis div:nth-child(4)[b-07y1evbw7y] {
            left: 56px;
            animation: lds-ellipsis3-b-07y1evbw7y 0.6s infinite;
        }

@keyframes lds-ellipsis1-b-07y1evbw7y {
    0% {
        transform: scale(0);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes lds-ellipsis3-b-07y1evbw7y {
    0% {
        transform: scale(1);
    }

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

@keyframes lds-ellipsis2-b-07y1evbw7y {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(24px, 0);
    }
}
/* /Components/MessageItem.razor.rz.scp.css */
.message-item[b-8ifglt6taz] {
    display: flex;
    margin: 8px 16px;
    gap: 8px;
}

.message-item.message-sent[b-8ifglt6taz] {
    justify-content: flex-end;
}

.message-item.message-received[b-8ifglt6taz] {
    justify-content: flex-start;
}

.message-item.message-dabalox[b-8ifglt6taz] {
    justify-content: flex-start;
}

.message-bubble[b-8ifglt6taz] {
    max-width: 70%;
    padding: 10px 14px;
    border-radius: 12px;
    word-wrap: break-word;
}

.message-sent .message-bubble[b-8ifglt6taz] {
    background-color: var(--accent-fill-rest);
    color: var(--neutral-fill-secondary-rest);
    border-bottom-right-radius: 4px;
}

.message-received .message-bubble[b-8ifglt6taz] {
    background-color: var(--neutral-fill-secondary-rest);
    color: var(--neutral-foreground-rest);
    border-bottom-left-radius: 4px;
}

.message-dabalox .message-bubble[b-8ifglt6taz] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-bottom-left-radius: 4px;
    border: 2px solid rgba(102, 126, 234, 0.3);
}

.message-sender[b-8ifglt6taz] {
    display: flex;
    align-items: center;
    gap: 4px;
    font-weight: 600;
    font-size: 12px;
    margin-bottom: 4px;
    opacity: 0.9;
}

.message-text[b-8ifglt6taz] {
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 4px;
}

.message-metadata[b-8ifglt6taz] {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    opacity: 0.8;
}

.message-sent .message-metadata[b-8ifglt6taz] {
    justify-content: flex-end;
}

.message-received .message-metadata[b-8ifglt6taz] {
    justify-content: flex-start;
}

.message-time[b-8ifglt6taz] {
    font-size: 11px;
}

.message-actions[b-8ifglt6taz] {
    display: flex;
    align-items: flex-end;
}

.message-item:hover .message-actions[b-8ifglt6taz] {
    opacity: 1;
}

@media (hover: none) {
    /* On touch devices, always show delete button for sent messages */
    .message-sent .message-actions[b-8ifglt6taz] {
        opacity: 1;
    }
}
/* /Components/MessagesView.razor.rz.scp.css */
.messages-container[b-jtg5e87tve] {
    height: 100%;
    display: flex;
    flex-direction: column;
    background-color: var(--neutral-layer-1);
}

.messages-header[b-jtg5e87tve] {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    border-bottom: 1px solid var(--neutral-stroke-divider-rest);
    background-color: var(--neutral-layer-2);
}

.messages-header-contact[b-jtg5e87tve] {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.messages-header-info[b-jtg5e87tve] {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.messages-list[b-jtg5e87tve] {
    flex: 1;
    overflow-y: auto;
    padding: 16px 0;
    scroll-behavior: smooth;
}

.messages-loading[b-jtg5e87tve],
.messages-empty[b-jtg5e87tve],
.messages-empty-conversation[b-jtg5e87tve] {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    gap: 16px;
    padding: 32px 16px;
    text-align: center;
}

.messages-input[b-jtg5e87tve] {
    display: flex;
    gap: 8px;
    padding: 16px;
    border-top: 1px solid var(--neutral-stroke-divider-rest);
    background-color: var(--neutral-layer-2);
}
/* /Components/MultiProjectSelector.razor.rz.scp.css */
.multi-project-selector[b-v94brrn1xx] {
    margin-bottom: 0.5rem;
}

.selected-projects[b-v94brrn1xx] {
    margin-bottom: 0.5rem;
    margin-left: 0.5rem;
}

.selected-projects h5[b-v94brrn1xx] {
    margin: 0 0 0.25rem 0;
    font-size: 0.875rem;
    color: #666;
}

.project-list[b-v94brrn1xx] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem;
}

.selected-project[b-v94brrn1xx] {
    display: flex;
    align-items: center;
    background-color: #e8f5e8;
    border: 1px solid #c3e6c3;
    border-radius: 16px;
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
    gap: 0.25rem;
    cursor: pointer;
}

.selected-project .project-name[b-v94brrn1xx] {
    max-width: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.project-picker[b-v94brrn1xx] {
    position: relative;
}

.project-picker-dropdown[b-v94brrn1xx] {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    max-height: 300px;
    overflow-y: auto;
    min-width: 300px;
}

.project-picker-header[b-v94brrn1xx] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem;
    border-bottom: 1px solid #eee;
    font-weight: 600;
    font-size: 0.875rem;
    background-color: #f8f9fa;
    border-radius: 8px 8px 0 0;
}

.available-projects[b-v94brrn1xx] {
    padding: 0.25rem;
}

.available-project[b-v94brrn1xx] {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 0.5rem;
    cursor: pointer;
    border-radius: 4px;
    font-size: 0.875rem;
}

.available-project:hover[b-v94brrn1xx] {
    background-color: #f5f5f5;
}

.project-info[b-v94brrn1xx] {
    flex: 1;
    min-width: 0; /* Allows text truncation */
}

.project-name-row[b-v94brrn1xx] {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin-bottom: 0.25rem;
}

.project-name[b-v94brrn1xx] {
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.project-description[b-v94brrn1xx] {
    color: #666;
    font-size: 0.75rem;
    line-height: 1.2;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.no-projects[b-v94brrn1xx] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 2rem;
    color: #666;
    font-style: italic;
    text-align: center;
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    .project-picker-dropdown[b-v94brrn1xx] {
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 90vw;
        max-width: 400px;
        height: 60vh;
        border-radius: 12px;
    }

    .selected-project .project-name[b-v94brrn1xx] {
        max-width: 120px;
    }

    .project-list[b-v94brrn1xx] {
        gap: 0.125rem;
    }

    .selected-project[b-v94brrn1xx] {
        font-size: 0.8rem;
    }
}

/* Ensure proper z-index stacking */
.project-picker-dropdown[b-v94brrn1xx] {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

/* Loading state styling */
.project-picker fluent-button[disabled][b-v94brrn1xx] {
    opacity: 0.6;
}
/* /Components/NotesGrid.razor.rz.scp.css */
.fake-link[b-sb388ecc0f] {
    cursor: pointer;
    color: var(--accent-fill-rest);
}
/* /Components/NotesSummaryAndFullTranscriptionDialog.razor.rz.scp.css */
.summary-container[b-nrlberb1t8] {
    height: 25%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1rem;
    box-sizing: border-box;
}
.summary-content[b-nrlberb1t8] {
    overflow-y: auto;
    flex: 1;
    padding: 0.5rem;
    margin-bottom: 1rem;
    border: 1px solid #ccc;
    border-radius: 6px;
}
.transcription-container[b-nrlberb1t8] {
    height: 70%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1rem;
    box-sizing: border-box;
}
.transcription-content[b-nrlberb1t8] {
    overflow-y: auto;
    flex: 1;
    padding: 0.5rem;
    margin-bottom: 1rem;
    border: 1px solid #ccc;
    border-radius: 6px;
}
/* /Components/NoteTakingDialog.razor.rz.scp.css */
.dialog-validation-message[b-o3ob447br7] {
    color: red;
}
/* /Components/OmniGrid.razor.rz.scp.css */
.fake-link[b-35rv4z8vuw] {
    cursor: pointer;
    color: var(--accent-fill-rest);
}
.warning-icon[b-35rv4z8vuw] {
    margin-right: 0.5rem;
    display: inline;
    cursor: help;
}
.refresh-button-container[b-35rv4z8vuw] {
    display: flex;
}
/* /Components/OmniList.razor.rz.scp.css */
.refresh-button-container[b-7lg6mtp7q3] {
    display: flex;
}
.omnilist-item-buttons[b-7lg6mtp7q3] {
    display: flex;
    margin-top:15px;
}
/* /Components/ProjectDocumentsGrid.razor.rz.scp.css */
.warning-icon[b-i2nplcpvyh] {
    margin-right: 0.5rem;
    display:inline;
    cursor:help;
}
/* /Components/ProjectDocumentsList.razor.rz.scp.css */
.file-icon[b-xzilcg4083] {
    margin-right: 0.2rem;
    display: inline;
}
.big-file-icon[b-xzilcg4083] {
    margin-right: 1rem;
    display: inline;
}
/* /Components/ProjectSetupList.razor.rz.scp.css */
[b-iwdukjgm38] > fluent-accordion-item.company-default-project-header::part(heading) {
    background-color: var(--dabalox-secondary-light-colour);
}
[b-iwdukjgm38] > fluent-accordion-item.installer-project-header::part(heading) {
    background-color: var(--dabalox-secondary-light-colour);
}
[b-iwdukjgm38] > fluent-accordion-item.regular-project-header::part(heading) {
    background-color: var(--dabalox-secondary-mid-colour);
}
[b-iwdukjgm38] > fluent-accordion-item.unclaimed-project-header::part(heading) {
    background-color: salmon;
}
.project-action-buttons[b-iwdukjgm38] {
    float:right;
}

.created-by-info[b-iwdukjgm38] {
    margin: 8px 0;
    color: var(--neutral-foreground-rest);
    font-style: italic;
}

.project-header-icon[b-iwdukjgm38] {
    margin-right: 8px;
}
/* /Components/ProjectUser.razor.rz.scp.css */
.user-pill[b-whce0h500q] {
    display: inline-block;
    padding: 2px 7px;
    border-radius: 15px;
    color: white;
    font-size: 0.7rem;
    cursor: pointer;
    text-align: center;
    margin: 1px;
    white-space: nowrap;
}
/* /Components/RagContentFileUploader.razor.rz.scp.css */
.ragcontentfileuploader-buttons[b-ncd7j381v2] {
    display: flex;
    justify-content:center;
    margin-top: 30px;
    gap:10px;
}
/* /Components/RecordingScreensaver.razor.rz.scp.css */
/* Recording Screensaver Styles */

.recording-screensaver[b-cq90o2x92m] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(135deg, #1A3B25 0%, #35774B 50%, #1A3B25 100%);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: backgroundShift-b-cq90o2x92m 20s ease-in-out infinite;
    cursor: pointer;
}

@keyframes backgroundShift-b-cq90o2x92m {
    0%, 100% {
        background: linear-gradient(135deg, #1A3B25 0%, #35774B 50%, #1A3B25 100%);
    }
    50% {
        background: linear-gradient(135deg, #35774B 0%, #1A3B25 50%, #35774B 100%);
    }
}

.screensaver-content[b-cq90o2x92m] {
    text-align: center;
    color: #FFFFFF;
    max-width: 600px;
    padding: 2rem;
}

.recording-indicator[b-cq90o2x92m] {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pulse-circle[b-cq90o2x92m] {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: pulse-b-cq90o2x92m 3s ease-out infinite;
}

.pulse-delay-1[b-cq90o2x92m] {
    animation-delay: 1s;
}

.pulse-delay-2[b-cq90o2x92m] {
    animation-delay: 2s;
}

@keyframes pulse-b-cq90o2x92m {
    0% {
        transform: scale(0.5);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.mic-icon[b-cq90o2x92m] {
    position: relative;
    z-index: 10;
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 50%;
    backdrop-filter: blur(10px);
    animation: float-b-cq90o2x92m 3s ease-in-out infinite;
}

@keyframes float-b-cq90o2x92m {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.recording-status h1[b-cq90o2x92m] {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.recording-status .duration[b-cq90o2x92m] {
    font-size: 3rem;
    font-weight: 700;
    margin: 1.5rem 0;
    font-family: 'Courier New', monospace;
    letter-spacing: 0.1em;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.recording-status .instruction[b-cq90o2x92m] {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-top: 1rem;
}

.exit-hint[b-cq90o2x92m] {
    margin-top: 3rem;
    font-size: 0.9rem;
    opacity: 0.7;
    animation: fadeInOut-b-cq90o2x92m 2s ease-in-out infinite;
}

.introduction-reminder[b-cq90o2x92m] {
    margin-top: 3rem;
    font-size: 0.9rem;
    opacity: 0.7;
    animation: fadeInOut-b-cq90o2x92m 2s ease-in-out infinite;
}

@keyframes fadeInOut-b-cq90o2x92m {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 0.9;
    }
}

.exit-confirmation[b-cq90o2x92m] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn-b-cq90o2x92m 0.3s ease-in;
}

@keyframes fadeIn-b-cq90o2x92m {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.exit-confirmation-content[b-cq90o2x92m] {
    background: linear-gradient(135deg, #2d5a3d 0%, #1A3B25 100%);
    padding: 2rem 3rem;
    border-radius: 16px;
    max-width: 500px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.exit-confirmation-content p[b-cq90o2x92m] {
    margin: 1rem 0;
    font-size: 1.1rem;
}

.warning-text[b-cq90o2x92m] {
    font-size: 0.95rem !important;
    opacity: 0.8;
    margin-bottom: 2rem !important;
}

.exit-buttons[b-cq90o2x92m] {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1.5rem;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .recording-status h1[b-cq90o2x92m] {
        font-size: 2rem;
    }

    .recording-status .duration[b-cq90o2x92m] {
        font-size: 2.5rem;
    }

    .recording-indicator[b-cq90o2x92m] {
        width: 150px;
        height: 150px;
        margin-bottom: 2rem;
    }

    .mic-icon[b-cq90o2x92m] {
        padding: 1.5rem;
    }

    .exit-confirmation-content[b-cq90o2x92m] {
        padding: 1.5rem 2rem;
        margin: 1rem;
    }

    .exit-buttons[b-cq90o2x92m] {
        flex-direction: column;
    }
}

/* Pattern overlay for visual interest */
.recording-screensaver[b-cq90o2x92m]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23ffffff" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}
/* /Components/ReportingErrorBoundary.razor.rz.scp.css */
.enhanced-error-boundary[b-o63fltj604] {
    padding: 2rem;
    margin: 1rem 0;
    border: 1px solid #dc3545;
    border-radius: 0.5rem;
    background-color: #f8d7da;
    color: #721c24;
}

.error-header h3[b-o63fltj604] {
    margin-top: 0;
    color: #721c24;
}

.error-actions[b-o63fltj604] {
    margin-top: 1rem;
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.error-details pre[b-o63fltj604] {
    background-color: #fff;
    padding: 1rem;
    border-radius: 0.25rem;
    overflow-x: auto;
    font-size: 0.875rem;
    border: 1px solid #dee2e6;
    max-height: 300px;
    overflow-y: auto;
}

.btn[b-o63fltj604] {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 0.25rem;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

.btn-primary[b-o63fltj604] {
    background-color: #007bff;
    color: white;
}

.btn-secondary[b-o63fltj604] {
    background-color: #6c757d;
    color: white;
}

.btn-link[b-o63fltj604] {
    background-color: transparent;
    color: #007bff;
    text-decoration: underline;
}

.btn:hover[b-o63fltj604] {
    opacity: 0.8;
}
/* /Components/SavedChatsDialog.razor.rz.scp.css */
.saved-chats-dialog[b-gs7p9fvqlf] {
    max-width: 100%;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-sizing: border-box;
}

.dialog-header[b-gs7p9fvqlf] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-bottom: 1px solid #e0e0e0;
    box-sizing: border-box;
}

.dialog-header h3[b-gs7p9fvqlf] {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
}

.filter-section[b-gs7p9fvqlf] {
    padding: 1rem;
    border-bottom: 1px solid #e0e0e0;
    background-color: #f8f9fa;
    box-sizing: border-box;
}

.filter-label[b-gs7p9fvqlf] {
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    color: #666;
    font-weight: 500;
}

.project-filter[b-gs7p9fvqlf] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.project-option[b-gs7p9fvqlf] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Constrain the dropdown listbox to prevent it from extending beyond dialog */
[b-gs7p9fvqlf] .fluent-select-listbox,
[b-gs7p9fvqlf] fluent-listbox {
    max-height: 300px !important;
    overflow-y: auto !important;
}

.chats-list[b-gs7p9fvqlf] {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 0.5rem;
    min-height: 300px;
    box-sizing: border-box;
}

.loading-state[b-gs7p9fvqlf] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 3rem;
    color: #666;
}

.empty-state[b-gs7p9fvqlf] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 3rem;
    color: #666;
    text-align: center;
}

.empty-state p[b-gs7p9fvqlf] {
    margin: 0;
}

.empty-state .hint[b-gs7p9fvqlf] {
    font-size: 0.875rem;
    color: #999;
}

.chat-item[b-gs7p9fvqlf] {
    padding: 0.75rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 0.5rem;
    cursor: pointer;
    transition: all 0.2s;
    box-sizing: border-box;
    max-width: 100%;
}

.chat-item:hover[b-gs7p9fvqlf] {
    background-color: #f5f5f5;
    border-color: #ccc;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.chat-header-row[b-gs7p9fvqlf] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.chat-summary[b-gs7p9fvqlf] {
    flex: 1;
    font-weight: 500;
    font-size: 0.9375rem;
    line-height: 1.4;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    min-width: 0;
    word-break: break-word;
}

.chat-date[b-gs7p9fvqlf] {
    font-size: 0.75rem;
    color: #666;
    white-space: nowrap;
    flex-shrink: 0;
}

.chat-metadata[b-gs7p9fvqlf] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.metadata-section[b-gs7p9fvqlf] {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.75rem;
    color: #666;
}

.metadata-text[b-gs7p9fvqlf] {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 200px;
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    .saved-chats-dialog[b-gs7p9fvqlf] {
        width: 100%;
        max-width: 100vw;
        max-height: 90vh;
    }

    .dialog-header h3[b-gs7p9fvqlf] {
        font-size: 1.125rem;
    }

    .chat-item[b-gs7p9fvqlf] {
        padding: 0.625rem;
    }

    .chat-summary[b-gs7p9fvqlf] {
        font-size: 0.875rem;
    }

    .metadata-text[b-gs7p9fvqlf] {
        max-width: 120px;
    }

    .chats-list[b-gs7p9fvqlf] {
        min-height: 250px;
    }
}

/* Scrollbar styling */
.chats-list[b-gs7p9fvqlf]::-webkit-scrollbar {
    width: 8px;
}

.chats-list[b-gs7p9fvqlf]::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.chats-list[b-gs7p9fvqlf]::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

.chats-list[b-gs7p9fvqlf]::-webkit-scrollbar-thumb:hover {
    background: #555;
}
/* /Components/ScrollableHtmlDialog.razor.rz.scp.css */
.dialog-container[b-27kyqu00tw] {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1rem;
    box-sizing: border-box;
}

.dialog-content[b-27kyqu00tw] {
    overflow-y: auto;
    flex: 1;
    padding:0.5rem;
    margin-bottom: 1rem;
    border: 1px solid #ccc;
    border-radius: 6px;
}
/* /Components/UserNotRecognisedPanel.razor.rz.scp.css */
*[b-leepzh98bn] {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body[b-leepzh98bn] {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #1F2937;
    background: linear-gradient(135deg, #004225 0%, #006837 100%);
    min-height: 100vh;
}

.features[b-leepzh98bn] {
    background: #F8FAFC;
    padding: 5rem 0rem;
}

.features-container[b-leepzh98bn] {
    max-width: 1200px;
    margin: 0 auto;
}

.features-title[b-leepzh98bn] {
    text-align: center;
    font-size: 2.5rem;
    color: #004225;
    margin-bottom: 3rem;
    font-weight: 500;
}

.features-grid[b-leepzh98bn] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card-disabled[b-leepzh98bn] {
    background: #F3F4F6;
    color: #9CA3AF;
    opacity: 0.6;
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #E5E7EB;
    position: relative;
    overflow: hidden;
    pointer-events: none;
    cursor: not-allowed;
}

.feature-card[b-leepzh98bn] {
    background: #FFFFFF;
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #E5E7EB;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

    .feature-card[b-leepzh98bn]::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, var(--dabalox-primary-accent-colour), var(--dabalox-secondary-mid-colour));
    }

    .feature-card:hover[b-leepzh98bn] {
        transform: translateY(-5px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    }

.feature-icon[b-leepzh98bn] {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #b53128, #f2f0f0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    box-shadow: 0 8px 20px rgba(0, 66, 37, 0.3);
}

.feature-title[b-leepzh98bn] {
    font-size: 1.5rem;
    color: #004225;
    margin-bottom: 1rem;
    font-weight: 600;
}

.feature-description[b-leepzh98bn] {
    color: #6B7280;
    font-size: 1rem;
    line-height: 1.6;
}
/* /Layout/LoginDisplay.razor.rz.scp.css */
a[b-442ye5t1x6] {
    color: var(--fill-color);
}
/* /Layout/MainLayout.razor.rz.scp.css */
.headerLink[b-evu5itnbip] {
    color: inherit;
    text-decoration: none;
}

    .headerLink:visited[b-evu5itnbip],
    .headerLink:active[b-evu5itnbip],
    .headerLink:focus[b-evu5itnbip],
    .headerLink:hover[b-evu5itnbip] {
        color: inherit;
        text-decoration: none;
    }

.no-focus[b-evu5itnbip] {
    outline: none !important;
    box-shadow: none !important;
    border: none !important;
}
/* /Layout/MobileNavMenu.razor.rz.scp.css */
.mobileNavMenu[b-2xyjwer8m4] {
    overflow: auto;
    resize: horizontal;
    width: 100%;
    padding-left: 10px;
    padding-right: 10px;
    /*    background-color: var(--accent-fill-rest); var(--neutral-background-rest);*/
    background-color: white;
}
.mobileNavMenuItem[b-2xyjwer8m4] {
    margin-bottom: 15px;
}
/* /Layout/TopLeftContent.razor.rz.scp.css */
.headerLink[b-43ksdmhasu] {
    color: inherit;
    text-decoration: none;
}

    .headerLink:visited[b-43ksdmhasu],
    .headerLink:active[b-43ksdmhasu],
    .headerLink:focus[b-43ksdmhasu],
    .headerLink:hover[b-43ksdmhasu] {
        color: inherit;
        text-decoration: none;
    }

.no-focus[b-43ksdmhasu] {
    outline: none !important;
    box-shadow: none !important;
    border: none !important;
}
/* /Layout/TopRightContent.razor.rz.scp.css */
.headerLink[b-12mu137oef] {
    color: inherit;
    text-decoration: none;
}

    .headerLink:visited[b-12mu137oef],
    .headerLink:active[b-12mu137oef],
    .headerLink:focus[b-12mu137oef],
    .headerLink:hover[b-12mu137oef] {
        color: inherit;
        text-decoration: none;
    }

.no-focus[b-12mu137oef] {
    outline: none !important;
    box-shadow: none !important;
    border: none !important;
}
/* /Pages/Authentication.razor.rz.scp.css */
.technical-info-accordion[b-yizlrcw918] {
    margin-top: 1rem;
    max-width:50%;
}
/* /Pages/Capture.razor.rz.scp.css */
.features-title[b-ahul9muihg] {
    text-align: center;
    font-size: 2.5rem;
    color: #004225;
    margin-bottom: 3rem;
    margin-top: 1.5rem;
    font-weight: 500;
}
/* /Pages/Home.NotAuthorized.razor.rz.scp.css */
*[b-i7sbubp1ch] {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body[b-i7sbubp1ch] {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #1F2937;
    background: linear-gradient(135deg, #004225 0%, #006837 100%);
    min-height: 100vh;
}

.logo[b-i7sbubp1ch] {
    font-size: 2rem;
    font-weight: bold;
    color: #F9FAFB;
    text-decoration: none;
}

.hero[b-i7sbubp1ch] {
    background: linear-gradient(135deg, #004225 0%, #006837 100%);
    color: #F9FAFB;
    padding: 4rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .hero[b-i7sbubp1ch]::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23ffffff" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
        opacity: 0.3;
    }

.hero-content[b-i7sbubp1ch] {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero h1[b-i7sbubp1ch] {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.hero-subtitle[b-i7sbubp1ch] {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button[b-i7sbubp1ch] {
    background: #10B981;
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

    .cta-button:hover[b-i7sbubp1ch] {
        background: #059669;
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
    }

.features[b-i7sbubp1ch] {
    background: #F8FAFC;
    padding: 5rem 2rem;
}

.features-container[b-i7sbubp1ch] {
    max-width: 1200px;
    margin: 0 auto;
}

.features-title[b-i7sbubp1ch] {
    text-align: center;
    font-size: 2.5rem;
    color: #004225;
    margin-bottom: 3rem;
    font-weight: 700;
}

.features-grid[b-i7sbubp1ch] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card[b-i7sbubp1ch] {
    background: #FFFFFF;
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #E5E7EB;
    position: relative;
    overflow: hidden;
}

    .feature-card[b-i7sbubp1ch]::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, #004225, #10B981);
    }

    .feature-card:hover[b-i7sbubp1ch] {
        transform: translateY(-5px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    }

.feature-icon[b-i7sbubp1ch] {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #004225, #006837);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    box-shadow: 0 8px 20px rgba(0, 66, 37, 0.3);
}

.feature-title[b-i7sbubp1ch] {
    font-size: 1.5rem;
    color: #004225;
    margin-bottom: 1rem;
    font-weight: 600;
}

.feature-description[b-i7sbubp1ch] {
    color: #6B7280;
    font-size: 1rem;
    line-height: 1.6;
}

.value-prop[b-i7sbubp1ch] {
    background: #004225;
    color: #F9FAFB;
    padding: 4rem 2rem;
    text-align: center;
    position: relative;
}

.value-prop-content[b-i7sbubp1ch] {
    max-width: 800px;
    margin: 0 auto;
}

.value-prop h2[b-i7sbubp1ch] {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.value-prop-text[b-i7sbubp1ch] {
    font-size: 1.2rem;
    line-height: 1.8;
    opacity: 0.95;
    margin-bottom: 2.5rem;
    font-style: italic;
}

@media (max-width: 768px) {
    .hero h1[b-i7sbubp1ch] {
        font-size: 2.5rem;
    }

    .hero-subtitle[b-i7sbubp1ch] {
        font-size: 1.1rem;
    }

    .features-grid[b-i7sbubp1ch] {
        grid-template-columns: 1fr;
    }

    .nav-container[b-i7sbubp1ch] {
        padding: 0 1rem;
    }

    .hero[b-i7sbubp1ch], .features[b-i7sbubp1ch], .value-prop[b-i7sbubp1ch] {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

.pulse-animation[b-i7sbubp1ch] {
    animation: pulse-b-i7sbubp1ch 2s infinite;
}

@keyframes pulse-b-i7sbubp1ch {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}
/* /Pages/InstallerChat.razor.rz.scp.css */
.chat-container[b-xam26vpbrj] {
    position: sticky;
    bottom: 0;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    padding-top: 0.75rem;
    padding-bottom: 1.5rem;
    border-top-width: 1px;
    border-color: #E5E7EB;
}

.centre-horizontally[b-xam26vpbrj] {
    display: flex;
    justify-content: center;
}
/* /Pages/Library.razor.rz.scp.css */
.tick-wrapper[b-twv075vh1e] {
    position: absolute;
    top: 8px;
    right: 8px;
    background-color: #28a745;
    color: white;
    font-weight: bold;
    font-size: 14px;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
    z-index: 10;
}
.description-text[b-twv075vh1e]{
    margin-top:1.0rem;
}
/* /Pages/Manage.razor.rz.scp.css */
.features-title[b-jieqncucx0] {
    text-align: center;
    font-size: 2.5rem;
    color: #004225;
    margin-bottom: 3rem;
    margin-top: 1.5rem;
    font-weight: 500;
}
/* /Pages/Messages.razor.rz.scp.css */
.messages-page[b-43dm74fz5g] {
    height: calc(100vh - 110px); /* Adjust based on header height */
    display: flex;
}

.messages-page.mobile-layout[b-43dm74fz5g] {
    flex-direction: column;
}

.messages-page.desktop-layout[b-43dm74fz5g] {
    flex-direction: row;
}

.desktop-contacts[b-43dm74fz5g] {
    width: 350px;
    min-width: 300px;
    max-width: 400px;
    flex-shrink: 0;
}

.desktop-messages[b-43dm74fz5g] {
    flex: 1;
    min-width: 0;
}
/* /Pages/ProjectContents.razor.rz.scp.css */
.project-contents-project-selector-container[b-mmzinanvau] {
    display: flex;
    justify-content: center;
}
.project-contents-project-description-container[b-mmzinanvau] {
    display: flex;
    justify-content: center;
    border: solid 1px;
    border-radius: 20px;
    padding: 20px;
}
/* /Pages/ResidentChat.razor.rz.scp.css */
.chat-container[b-1rwlqbj1w4] {
    position: sticky;
    bottom: 0;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    padding-top: 0.75rem;
    padding-bottom: 1.5rem;
    border-top-width: 1px;
    border-color: #E5E7EB;
}

.centre-horizontally[b-1rwlqbj1w4] {
    display: flex;
    justify-content: center;
}
/* /Pages/Templates.razor.rz.scp.css */
.description-container[b-89v16b2sxl] {
    padding: 12px;
    background-color: var(--neutral-layer-2);
    border-radius: 14px;
    margin-top: 8px;
}

.description-label[b-89v16b2sxl] {
    font-size: 0.875rem;
    color: var(--neutral-foreground-hint);
    line-height: 1.4;
}

.no-data-required-label[b-89v16b2sxl] {
    color: var(--neutral-foreground-hint);
}

.result-header[b-89v16b2sxl] {
    flex: 1;
}

.placeholder-container[b-89v16b2sxl] {
    color: var(--neutral-foreground-hint);
    text-align: center;
    padding: 40px 20px;
}

.progress-ring[b-89v16b2sxl] {
    width: 48px;
    height: 48px;
}

.placeholder-message[b-89v16b2sxl] {
    margin-top: 20px;
}

.execution-time[b-89v16b2sxl] {
    font-size: 0.75rem;
    color: var(--neutral-foreground-hint);
}

.markdown-result[b-89v16b2sxl] {
    padding: 20px;
    background-color: var(--neutral-layer-1);
    border-radius: 4px;
    overflow-x: auto;
    max-height: 600px;
    overflow-y: auto;
}

.markdown-result h1[b-89v16b2sxl],
.markdown-result h2[b-89v16b2sxl],
.markdown-result h3[b-89v16b2sxl],
.markdown-result h4[b-89v16b2sxl],
.markdown-result h5[b-89v16b2sxl],
.markdown-result h6[b-89v16b2sxl] {
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.markdown-result p[b-89v16b2sxl] {
    margin-bottom: 1rem;
}

.markdown-result ul[b-89v16b2sxl],
.markdown-result ol[b-89v16b2sxl] {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.markdown-result code[b-89v16b2sxl] {
    background-color: var(--neutral-layer-2);
    padding: 2px 4px;
    border-radius: 2px;
}

.markdown-result pre[b-89v16b2sxl] {
    background-color: var(--neutral-layer-2);
    padding: 12px;
    border-radius: 4px;
    overflow-x: auto;
}
/* /Pages/TradespersonChat.razor.rz.scp.css */
.chat-container[b-j0pjbxo3v6] {
    position: sticky;
    bottom: 0;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    padding-top: 0.75rem;
    padding-bottom: 1.5rem;
    border-top-width: 1px;
    border-color: #E5E7EB;
}

.centre-horizontally[b-j0pjbxo3v6] {
    display: flex;
    justify-content: center;
}
