#chatbot-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 300px;
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    display: none;
    flex-direction: column;
    z-index: 1000;
}

#chatbot-header {
    background-color: olive;
    color: white;
    padding: 10px;
    cursor: pointer;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    position: relative;
}

#chat-close-btn {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: none;
    color: white;
    cursor: pointer;
    font-size: 16px;
}

#chatbot-messages {
    height: 200px;
    overflow-y: auto;
    padding: 10px;
    background-color: #f9f9f9;
}

#chatbot-input-area {
    display: flex;
    padding: 10px;
    background-color: #fff;
    border-top: 1px solid #ddd;
}

#chatbot-input {
    flex-grow: 1;
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 15px;
    margin-right: 10px;
}

#chatbot-send-btn {
    padding: 5px 10px;
    background: linear-gradient(to bottom, #b5c583 0%, #808000 100%);
    color: white;
    border: none;
    border-radius: 15px;
    cursor: pointer;
}

.chat-message {
    max-width: 60%;
    padding: 8px 10px;
    border-radius: 18px;
    margin-bottom: 5px;
    color: white;
}

.chat-message.user {
    background-color: olive;
	text-align: right;
    align-self: flex-end;
}

.chat-message.bot {
    background-color: #E5E5EA;
    color: black;
	text-align: left;
    align-self: flex-start;
}

#chatbot-messages {
    display: flex;
    flex-direction: column;
}

.bot-spacing {
    margin-bottom: 20px; /* Adjust the space as needed */
}

