.chatbot-icon {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #043dfa5a;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    z-index: 1000;
}

.chatbot-message {
    display: none; /* Message div will be shown as a modal */
}

#chatbot-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1001; /* Ensure it's above the message div */
}

#chatbot-overlay .chatbot-modal {
    background-color: #fafafabf;
    color: #000; /* Set text color to black */
    font-weight: bold;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    max-width: 80%;
    text-align: left;
}
