﻿.chatbot {
    position: relative;
    right: 20px;
    bottom: 20px;
    width: 100%;
    background: #fff;
    font-family: system-ui,Segoe UI,Roboto,Arial;
}

.chat-header {
    background: #ffffff;
    color: #000000;
    padding: 10px 12px;
    font-weight: 600;
    border-bottom: 1px solid #eee;

}

.chat-window {
    height: 450px;
    overflow-y: auto;
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.msg {
    max-width: 85%;
    padding: 10px 12px;
    line-height: 1.35;
    font-size: .95rem;
}

    .msg.bot {
        background: #f3f4f6;
        color: #111827;
        align-self: flex-start;
    }
    .msg.quit {
        background: #f3f4f6;
        color: #111827;
        align-self: flex-start;
    }

    .msg.user {
        background: #2563eb;
        color: #fff;
        align-self: flex-end;
    }

.chat-input {
    display: flex;
    gap: 6px;
    border-top: 1px solid #eee;
    padding: 8px;
}

#chat-text {
    flex: 1;
    padding: 10px;
    border: 1px solid #e5e7eb;
    outline: none;
}

#chat-send {
    border: 0;
    background: #2563eb;
    color: #fff;
    padding: 0 14px;
    cursor: pointer;
}
