#chatbot-container {
    position: fixed;
    bottom: 10px;
    right: 10px;
    width: 300px;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 5px;
}

#chatbot-header {
    background: #0073aa;
    color: #fff;
    padding: 10px;
}

#chatbot-body {
    height: 200px;
    overflow-y: auto;
    padding: 10px;
}

.user-message {
    text-align: right;
    color: blue;
}

.bot-message {
    text-align: left;
    color: green;
}