(function() { const btn = document.createElement('button'); btn.innerHTML = ''; btn.style.cssText = 'position:fixed;bottom:24px;right:24px;width:56px;height:56px;border-radius:50%;background:#2563eb;color:white;border:none;cursor:pointer;box-shadow:0 10px 25px rgba(0,0,0,0.2);z-index:9999'; const modal = document.createElement('div'); modal.style.cssText = 'position:fixed;bottom:100px;right:24px;width:384px;height:600px;background:white;border-radius:12px;box-shadow:0 10px 40px rgba(0,0,0,0.3);z-index:9999;display:none;overflow:hidden'; const iframe = document.createElement('iframe'); iframe.style.cssText = 'width:100%;height:100%;border:none'; iframe.src = 'https://servicetotal.base44.app/EmbedChat'; modal.appendChild(iframe); btn.onclick = () => { modal.style.display = modal.style.display === 'none' ? 'block' : 'none'; }; document.body.appendChild(btn); document.body.appendChild(modal); })();