﻿/* Layout tin nhắn */
.chat-msg-user {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 12px;
}

.chat-msg-bot {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 12px;
}

/* Bong bóng chat */
.bubble-user {
    background-color: var(--mud-palette-primary) !important;
    color: white !important;
    border-radius: 16px 16px 4px 16px;
    max-width: 85%;
}

.bubble-bot {
    background-color: var(--mud-palette-background-grey) !important;
    border-radius: 16px 16px 16px 4px;
    max-width: 85%;
}

/* Xử lý Markdown để không bị dính chữ */
.markdown-container {
    line-height: 1.6;
    word-break: break-word;
}

    .markdown-container p {
        margin-bottom: 10px;
    }

        .markdown-container p:last-child {
            margin-bottom: 0;
        }

    .markdown-container pre {
        background: #1e1e1e;
        color: #dcdcdc;
        padding: 12px;
        border-radius: 8px;
        overflow-x: auto;
        margin: 10px 0;
    }

    .markdown-container table {
        border-collapse: collapse;
        width: 100%;
        margin: 10px 0;
    }

    .markdown-container th, .markdown-container td {
        border: 1px solid #ddd;
        padding: 6px;
    }

/* Cuộn mượt */
#chat-window {
    scroll-behavior: smooth;
}
