#chat-button {
     position: fixed;
     bottom: 20px;
     right: 20px;
     background-color: #007bff;
     color: white;
     padding: 10px 20px;
     cursor: pointer;
     border-radius: 5px;
}

#chat-container {
     position: fixed;
     border: 1px solid #ccc;
     border-radius: 5px;
     /* Adjust z-index if needed to ensure the chat is on top of other content */
     z-index: 1000000;
}