document.addEventListener('DOMContentLoaded', () => {
const chatIconContainer = document.querySelector('div[style*="position: fixed;"]');
if (chatIconContainer) {
chatIconContainer.style.bottom = 'auto'; // Remove the bottom positioning
chatIconContainer.style.right = 'auto'; // Remove the right positioning
chatIconContainer.style.top = '20px'; // Add top positioning
chatIconContainer.style.left = '20px'; // Add left positioning
}
});