/* chatbot.css */
#chatbot-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 300px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: block;
    z-index: 1000;
}

#chatbot-header {
    background-color: #007BFF;
    color: white;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#chatbot-messages {
    height: 300px;
    overflow-y: auto;
    padding: 10px;
}

#chatbot-input {
    display: flex;
    padding: 10px;
}

#user-message {
    flex-grow: 1;
    padding: 5px;
    margin-right: 5px;
}

#send-message {
    padding: 5px;
}

.user-message {
    background-color: #e0f7fa;
    padding: 5px;
    border-radius: 5px;
    margin-bottom: 5px;
}

.bot-message {
    background-color: #ffe0b2;
    padding: 5px;
    border-radius: 5px;
    margin-bottom: 5px;
}
