/* _content/AITwin/Components/Layout/Footer.razor.rz.scp.css */
.footer-links[b-7ierdt8ko1] {
    display: flex;
    justify-content: center;
    gap: 16px;
}
/* _content/AITwin/Components/Layout/MainLayout.razor.rz.scp.css */
#blazor-error-ui[b-ifv822gls0] {
    color-scheme: light only;
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss[b-ifv822gls0] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* _content/AITwin/Components/Pages/Chat.razor.rz.scp.css */
.chat-container[b-godse9si5a] {
    height: 100vh;
    display: flex;
    flex-direction: row;
}

.sidebar[b-godse9si5a] {
    background-color: #f4f4f4;
    height: 100%;
}

.sidebar-paper[b-godse9si5a] {
    height: 100%;
}

.chat-area[b-godse9si5a] {
    display: flex;
    flex-direction: column;
    height: 100%;
    background-color: #fff;
}

.chat-header[b-godse9si5a] {
    background-color: #6200ea;
    color: white;
}

.chat-messages[b-godse9si5a] {
    flex-grow: 1;
    padding: 1rem;
    overflow-y: auto;
    background-color: #fafafa;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.message[b-godse9si5a] {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

    .message.incoming[b-godse9si5a] {
        justify-content: flex-start;
    }

    .message.outgoing[b-godse9si5a] {
        justify-content: flex-end;
    }

.message-text[b-godse9si5a] {
    background-color: #e0e0e0;
    padding: 0.75rem;
    border-radius: 0.5rem;
    max-width: 60%;
}

.message.outgoing .message-text[b-godse9si5a] {
    background-color: #6200ea;
    color: white;
}

.chat-input-container[b-godse9si5a] {
    display: flex;
    align-items: center;
    padding: 0.5rem;
    gap: 0.5rem;
    border-top: 1px solid #e0e0e0;
}

.input-field[b-godse9si5a] {
    flex-grow: 1;
}

.send-button[b-godse9si5a] {
    flex-shrink: 0;
}
