#chatButton {
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 10px 20px;
    cursor: pointer;
    -webkit-transform: translate3d(0,0,0); /* Add this line */
    transform: translate3d(0,0,0); /* Standard syntax for compatibility */
    z-index: 10000;
}


#chatWindow {
    position: fixed;
    bottom: 0;
    right: 0;
    background-color: white;
    border: 1px solid #ccc;
    z-index: 10000; /* Ensure it's above other content */
}

