#chatbot-container {
    width: 100%;
    max-width: 400px;
    border: 1px solid #ccc;
    padding: 10px;
    font-family: Arial, sans-serif;
    background: #f9f9f9;
    border-radius: 8px;
}

#chatbot-messages {
    height: 300px;
    overflow-y: auto;
    border: 1px solid #ddd;
    padding: 5px;
    margin-bottom: 10px;
    background: #fff;
    border-radius: 5px;
}

.chatbot-message {
    margin: 5px 0;
    padding: 6px 10px;
    border-radius: 5px;
}

.chatbot-message.user {
    background: #d1e7ff;
    text-align: right;
}

.chatbot-message.bot {
    background: #e9e9e9;
    text-align: left;
}

#chatbot-input {
    width: 70%;
    padding: 8px;
    border-radius: 5px;
    border: 1px solid #aaa;
}

#chatbot-send {
    width: 25%;
    padding: 8px;
    border: none;
    background: #0073aa;
    color: white;
    border-radius: 5px;
    cursor: pointer;
}

#chatbot-send:hover {
    background: #005f8d;
}
