.chatbot-container {
    display: none; /* Hidden by default */
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 300px;
    background-color: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    flex-direction: column;
    z-index: 1000;
    overflow: hidden;
}

/* Chatbot Header */
.chatbot-header {
    background-color: #ff9100;
    color: white;
    padding: 10px;
    font-size: 16px;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chatbot-header button {
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
}

/* Chatbot Body */
.chatbot-body {
    display: flex;
    flex-direction: column;
    height: 400px;
}

.chatbot-messages {
    flex: 1;
    overflow-y: auto;
    padding: 10px;
    background-color: #f7f7f7;
}

.chatbot-messages div {
    margin: 5px 0;
    padding: 10px;
    border-radius: 5px;
    max-width: 80%;
}

.chatbot-messages .user-message {
    background-color: #ff9100;
    color: white;
    align-self: flex-end;
}

.chatbot-messages .bot-message {
    background-color: #eaeaea;
    color: black;
    align-self: flex-start;
}

/* Chatbot Input */
.chatbot-input-container {
    display: flex;
    padding: 10px;
    border-top: 1px solid #ccc;
}

#chatbot-input {
    flex: 1;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
}

#chatbot-send-btn {
    margin-left: 10px;
    padding: 10px;
    background-color: #ff9100;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

/* Chatbot Toggle Button */
.chatbot-toggle-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #ff9100;
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 24px;
    cursor: pointer;
    z-index: 1000;
}
