/* Floating chat icon */
#chatIcon {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #007bff;
    border-radius: 50%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    z-index: 1000;
}

#chatIcon img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

/* Chat window background and text color */
#chatWindow {
    position: fixed;
    bottom: 100px;
    right: 20px;
    width: 300px;
    height: 400px;
    border: 1px solid #ccc;
    background-color: #333;
    /* Dark gray background */
    color: #000;
    /* Black text */
    display: none;
    flex-direction: column;
    z-index: 1000;
}

/* Chat messages container */
#chatMessages {
    flex-grow: 1;
    padding: 10px;
    overflow-y: auto;
    border-bottom: 1px solid #ccc;
    background-color: #E5E4E2;
    /* some light gray background */
    color: #000;
    /* Black text */
}

/* Chat input container */
#chatInputContainer {
    display: flex;
    padding: 10px;
    background-color: #E5E4E2;
    /* some light gray background */
}

/* Chat input box */
#chatInput {
    flex-grow: 1;
    padding: 5px;
    color: #000;
    /* Black text */
    background-color: #ccc;
    /* Light gray background */
    border: none;
    border-radius: 4px;
    resize: none;
    font-family: inherit;
    /* Ensure consistent font */
    font-size: 14px;
    /* Adjust the font size as needed */
}

/* Send button */
#sendButton {
    padding: 5px 10px;
    background-color: #007bff;
    /* Button color */
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 4px;
}

/* Floating chat icon */
#chatIcon {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #007bff;
    border-radius: 50%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: white;
    /* Color of the chat icon */
}