#chatbot {
    position: fixed;
    bottom: 90px;
    right: 85px;
    width: 300px;
    border: 1px solid #ccc;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    z-index: 1500;
    display: none;
}

#chatbot-header {
    background-color: #B1740F;
    /* background-color: #007bff; */
    color: #fff;
    padding: 10px;
    text-align: center;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

#chatbot-body {
    padding: 10px;
}

#chatbot-messages {
    height: 200px;
    overflow-y: scroll;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    padding: 5px;
    background-color: #f9f9f9;
}

#chatbot-input {
    width: 75%;
    padding: 5px;
}

#chatbot-send {
    width: 20%;
    padding: 5px;
    background-color: #B1740F;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.message-user {
    /* background-color: #e0f7fa; */
    background-color: #F6EDEE;
    /* Light blue for user messages */
    padding: 5px;
    margin-bottom: 5px;
    border-radius: 5px;
}

.message-bot {
    background-color: #fff3e0;
    /* Light orange for bot responses */
    padding: 5px;
    margin-bottom: 5px;
    border-radius: 5px;
}

#chatbot-toggle {
    position: fixed;
    bottom: 85px;
    right: 30px;
    /* background-color: #007bff; */
    background-color: #B1740F;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    z-index: 1500;
}

#chatbot-toggle i {
    font-size: 24px;
}