.chat-messages {
    min-height: 320px;
    max-height: 420px;
    overflow-y: auto;
    background: #c8d7e5; /*#f8f9fa;*/
    border-radius: 16px;
    padding: 16px;
}

.chat-bubble {
    max-width: 80%;
    padding: 10px 14px;
    border-radius: 14px;
    margin-bottom: 10px;
    line-height: 1.4;
}

.chat-bubble.bot {
    background: #e9f2ff;
    color: #0d3b66;
}

.chat-bubble.user {
    background: #0d6efd;
    color: #fff;
    margin-left: auto;
}

.chatbot-frame-body {
    margin: 0;
    background: #c8d7e5;
    font-family: Arial, sans-serif;
}

.chatbot-frame {
    height: 100vh;
    display: flex;
    flex-direction: column;
}

.chatbot-frame-header {
    background: #0d6efd;
    color: #fff;
    padding: 12px;
}

.chatbot-frame .chat-messages {
    flex: 1;
    min-height: 0;
    max-height: none;
    overflow-y: auto;
    border-radius: 0;
}

.chatbot-frame .chat-input input {
    outline: none;
}
/*
.chatbot-frame .chat-actions button {
    border: 1px solid #ddd;
    background: #fff;
    padding: 6px 10px;
    border-radius: 6px;
}*/