body {
    font-family: 'Poppins', sans-serif; /* Set Poppins as the default font */
}
/* Chatbot container */
#chatbot-container {
    width: 300px;
    position: fixed;
    bottom: 80px;
    right: 20px;
    background-color: #f1f1f1;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: none;
    max-height: 400px;
    overflow-y: auto;
}

/* Chatbot header */
#chatbot-header {
    padding: 10px;
    background-color: #25D366;
    color: #fff;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

#chatbot-header .end-chat-button {
    background: none;
    border: none;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
}

/* Chat messages */
#chatbot-messages {
    padding: 10px;
    font-size: 14px;
}

.user-message, .bot-message {
    margin: 5px 0;
    padding: 8px;
    border-radius: 5px;
}

.user-message {
    background-color: #DCF8C6;
    align-self: flex-end;
    text-align: right;
}

.bot-message {
    background-color: #E6E6E6;
}

/* Enhanced Send button */
#chatbot-input {
    width: 80%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 5px 0 0 5px;
    outline: none;
}

#chatbot-send {
    width: 20%;
    background-color: #25D366;
    color: white;
    border: none;
    padding: 8px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 0 5px 5px 0;
    transition: background-color 0.3s ease;
}

#chatbot-send:hover {
    background-color: #1ebd59;
}

/* WhatsApp button */
.whatsapp-button {
    display: block;
    color: white;
    background-color: #25D366;
    padding: 10px;
    border-radius: 5px;
    text-align: center;
    text-decoration: none;
    font-weight: bold;
    margin-top: 10px;
}

/* Start chat button with circular style */
#start-chat {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    border: none;
    border-radius: 50%;
    padding: 15px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease; /* Optional: for button hover effect */
}

#start-chat:hover {
    background-color: #1ebd59; /* Change color on hover */
}

#start-chat i {
    font-size: 24px; /* Size of the chat icon */
    color: white; /* Color of the chat icon */
}

/* Remove sliding text */
#start-chat span {
    display: none; /* Hide the text */
}

/* Responsive adjustments */
@media (max-width: 500px) {
    #chatbot-container {
        width: 90%;
        right: 5%;
        bottom: 10%;
    }

    #start-chat {
        bottom: 10px;
        right: 10px;
        padding: 12px;
        font-size: 20px;
    }

    #chatbot-input, #chatbot-send {
        width: 70%;
        padding: 10px;
    }

    #chatbot-send {
        width: 30%;
        font-size: 16px;
    }
}
