function adjustChatWidget() { var iframe = document.getElementById("chat-widget"); if (window.innerWidth <= 768) { // במובייל: הצ'אט יתפרס על כל המסך iframe.style.width = "100vw"; iframe.style.height = "100vh"; iframe.style.left = "0"; iframe.style.right = "0"; } else { // ב-PC: הצ'אט יוצמד לצד ימין בגובה מלא כמו תוסף צדדי iframe.style.width = "400px"; iframe.style.height = "100vh"; iframe.style.right = "0"; iframe.style.left = "auto"; iframe.style.boxShadow = "-2px 0 10px rgba(0, 0, 0, 0.2)"; // אפקט של תוסף צדדי iframe.style.borderLeft = "1px solid #ddd"; // מסגרת עדינה להפרדה } } // התאמת הווידג'ט בעת טעינת הדף ובשינוי גודל מסך window.addEventListener("resize", adjustChatWidget); adjustChatWidget(); // הפעלה מיידית בעת טעינת הדף