
#umeed-chat-bubble {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #007bff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

#umeed-chat-box {
    display: none;
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 300px;
    background-color: #fff;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
    padding: 10px;
    border-radius: 10px;
}

#umeed-chat-messages {
    max-height: 200px;
    overflow-y: auto;
}

#umeed-chat-input {
    width: 100%;
    padding: 10px;
    margin-top: 10px;
    border-radius: 5px;
}

#umeed-chat-send {
    padding: 10px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
