#simple-chat-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    cursor: pointer;
    padding: 10px 20px;
    background-color: #B64790;
    color: white;
    border-radius: 5px;
    font-size: 16px;
    transition: background-image 0.3s ease-in-out;
}

#simple-chat-button.chat-button-open {
    background-image: url('https://firebasestorage.googleapis.com/v0/b/hopa-app-israel.appspot.com/o/Business%2FLAHAV%2FWebsite%20icons%2F08968a0a-1e3a-4c3f-8f82-ce8e9be05d61.jpeg?alt=media&token=478ab4de-e6b5-4e36-b32f-71405994c874');
    /* URL for the open state image */
}

#simple-chat-frame-container {
    position: fixed;
    bottom: 70px;
    right: 20px;
    width: 340px;
    height: 520px;
    z-index: 9999;
    border: 1px solid #ddd;
    background-color: white;
    display: none;
}

#simple-chat-frame {
    width: 125%;
    height: 100%;
    border: none;
    z-index: 9999;
}