#chatbot-box {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 300px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 10px;
    font-family: sans-serif;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

#chatbot-messages {
    height: 200px;
    overflow-y: auto;
    margin-bottom: 10px;
    font-size: 14px;
}

#chatbot-input {
    width: 80%;
    padding: 5px;
}

#chatbot-send {
    width: 18%;
    padding: 5px;
}