/* /Layout/MainLayout.razor.rz.scp.css */
.page[b-v8q5m4zhkd] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-v8q5m4zhkd] {
    flex: 1;
}

.sidebar[b-v8q5m4zhkd] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-v8q5m4zhkd] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-v8q5m4zhkd]  a, .top-row[b-v8q5m4zhkd]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

    .top-row[b-v8q5m4zhkd]  a:hover, .top-row[b-v8q5m4zhkd]  .btn-link:hover {
        text-decoration: underline;
    }

    .top-row[b-v8q5m4zhkd]  a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row[b-v8q5m4zhkd] {
        justify-content: space-between;
    }

    .top-row[b-v8q5m4zhkd]  a, .top-row[b-v8q5m4zhkd]  .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-v8q5m4zhkd] {
        flex-direction: row;
    }

    .sidebar[b-v8q5m4zhkd] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-v8q5m4zhkd] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-v8q5m4zhkd]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-v8q5m4zhkd], article[b-v8q5m4zhkd] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}
/* /Pages/Charlie.razor.rz.scp.css */
.chat-container[b-2a672osv1j] {
    display: flex;
    flex-direction: column;
    min-height: calc(100vh - 120px);
}

@media (max-width: 576px) {
    .chat-container[b-2a672osv1j] {
        min-height: calc(100vh - 80px);
    }
}

.chat-messages[b-2a672osv1j] {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
    border: 1px solid #dee2e6;
    border-radius: 0.375rem;
    background-color: #f8f9fa;
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.chat-message[b-2a672osv1j] {
    display: flex;
}

.user-message[b-2a672osv1j] {
    justify-content: flex-end;
}

.assistant-message[b-2a672osv1j] {
    justify-content: flex-start;
}

.message-bubble[b-2a672osv1j] {
    max-width: 85%;
    padding: 0.5rem 0.75rem;
    border-radius: 0.75rem;
    background-color: #ffffff;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
    .message-bubble[b-2a672osv1j] {
        max-width: 75%;
    }
}

.user-message .message-bubble[b-2a672osv1j] {
    background-color: #0d6efd;
    color: #ffffff;
}

.message-label[b-2a672osv1j] {
    font-size: 0.75rem;
    font-weight: 600;
    opacity: 0.8;
    display: block;
    margin-bottom: 0.25rem;
}

.message-text[b-2a672osv1j] {
    margin: 0;
    white-space: pre-wrap;
    word-break: break-word;
}

.chat-input-area .input-group[b-2a672osv1j] {
    display: flex;
    gap: 0.5rem;
    align-items: flex-end;
}

.chat-input-area textarea[b-2a672osv1j] {
    resize: none;
}
