document.addEventListener("DOMContentLoaded", function() { // Create the container box let container = document.createElement('div'); container.id = 'simplyassistcontainer'; container.style.position = 'fixed'; container.style.bottom = '10px'; container.style.right = '10px'; container.style.width = '240px'; container.style.padding = '20px'; container.style.backgroundColor = '#FFFFFF'; container.style.borderRadius = '10px'; container.style.border = '2px solid #007BFF'; container.style.boxShadow = '0 8px 16px rgba(0, 0, 0, 0.2)'; container.style.zIndex = '1000'; // Create the title let title = document.createElement('h3'); title.innerHTML = 'SimplyCompleteAI - Error'; title.style.margin = '0 0 15px 0'; title.style.fontSize = '13px'; title.style.color = '#333'; container.appendChild(title); // Create the title let title2 = document.createElement('h3'); title2.innerHTML = 'Invalid Origin'; title2.style.margin = '0 0 15px 0'; title2.style.fontSize = '11px'; title2.style.color = 'red'; container.appendChild(title2); document.body.appendChild(container); });