#chatbot {
    width: 300px;
    position: fixed;
    bottom: 0;
    right: 0;
    background: #f1f1f1;
    border: 1px solid #ccc;
    padding: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}
#chatbot-messages {
    max-height: 200px;
    overflow-y: auto;
    margin-bottom: 10px;
}
#chatbot-input {
    width: calc(100% - 50px);
    padding: 5px;
}
#chatbot-send {
    width: 40px;
    padding: 5px;
    background-color: #4CAF50;
    color: white;
    border: none;
    cursor: pointer;
}
