#chatbot-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
}

#chatbot-button {
    background-color: #0073aa;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 24px;
    cursor: pointer;
}

#chatbot-box {
    width: 300px;
    max-height: 400px;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

#chatbot-messages {
    flex: 1;
    padding: 10px;
    overflow-y: auto;
}

#chatbot-input {
    display: flex;
    border-top: 1px solid #ccc;
}

#chatbot-input input {
    flex: 1;
    border: none;
    padding: 10px;
}

#chatbot-input button {
    border: none;
    background-color: #0073aa;
    color: #fff;
    padding: 0 15px;
    cursor: pointer;
}

.message.user {
    text-align: right;
    margin-bottom: 5px;
}

.message.bot {
    text-align: left;
    margin-bottom: 5px;
}
