window.addEventListener('DOMContentLoaded', function () {if (window.appquery && window.app == null) {(function() { const html = `
Your browser was unable to load the application
We've been notified of the issue. Please try again in a few moments and make sure not to use ad-blockers.
` const css = document.createElement('style') css.type = 'text/css' css.appendChild( document.createTextNode(` .error-overlay { width: 100%; height: 100%; background: rgba(0,0,0,0.30); overflow: hidden; display: flex; justify-content: center; align-items: flex-start; position: fixed; inset: 0; z-index: 999999; } .error-card { width: 500px; margin: 40px; background: white; box-shadow: 0px 1px 2px rgba(0,0,0,0.10); border-radius: 8px; display: flex; flex-direction: column; } .error-section { padding: 40px; display: flex; flex-direction: column; gap: 12px; } .error-title { color: #1A1A1A; font-size: 18px; font-family: Arial, sans-serif; font-weight: 600; line-height: 28px; } .error-message { color: #525252; font-size: 14px; font-family: Arial, sans-serif; font-weight: 400; line-height: 20px; white-space: pre-wrap; } `) ) document.head.appendChild(css) const container = document.createElement('div') container.className = 'error-overlay' container.innerHTML = html document.body.appendChild(container) })()}});