`;
// Style the form popup
formContainer.style.position = 'fixed';
formContainer.style.bottom = '20px';
formContainer.style.right = '20px';
formContainer.style.background = 'white';
formContainer.style.padding = '25px';
formContainer.style.borderRadius = '12px';
formContainer.style.boxShadow = '0 0 20px rgba(0,0,0,0.2)';
formContainer.style.zIndex = '99999';
// Add close button
formContainer.innerHTML += `
`;
// Add to page
document.body.appendChild(formContainer);
// Stop checking after form appears
clearInterval(checkInterval);
}
}, 3000); // Check every 3 seconds
});