﻿.chat-body {
    height: 400px;
    overflow-y: auto;
    padding: 12px;
    background: #fff;
}

.chat-message {
    margin-bottom: 10px;
    padding: 15px 12px;
    border-radius: 12px;
    max-width: 80%;
    word-wrap: break-word;
}

    .chat-message.user {
        background: linear-gradient(60deg, rgb(235, 245, 255), rgb(225, 239, 255), rgb(214, 234, 255));
        color: black;
        margin-left: auto;
        text-align: right;
    }

    .chat-message.bot {
        background: #223f9a;
        color: white;
        margin-right: auto;
        text-align: right;
    }

.chat-footer input {
    border-radius: 12px;
}

.chat-header {
    display: flex;
    align-items: center;
    padding: 10px;
    border-bottom: 1px solid #dee2e6;
}

    .chat-header img {
        width: 50px;
        margin-left: 10px;
    }

    .chat-header .header-text {
        display: flex;
        flex-direction: column;
    }
