Block Cookies | Your Browser Is Currently Set To

// Set up event listeners once DOM is ready function setupEventListeners() { const enableBtn = document.getElementById('enable-cookies-btn'); const dismissBtn = document.getElementById('dismiss-warning'); const warningEl = document.getElementById('cookie-warning');

modal.innerHTML = ` <div style="background: white; border-radius: 12px; max-width: 450px; width: 90%; padding: 25px; box-shadow: 0 20px 60px rgba(0,0,0,0.3);"> <h3 style="margin-top: 0;">Enable Cookies in ${instructions.browser}</h3> <ol style="margin: 20px 0; padding-left: 20px;"> ${instructions.steps.map(step => `<li style="margin: 12px 0;">${step}</li>`).join('')} </ol> <div style="display: flex; justify-content: flex-end; gap: 10px;"> <button id="close-modal-btn" style="padding: 8px 16px; background: #2196f3; color: white; border: none; border-radius: 6px; cursor: pointer;">Got it</button> </div> </div> `; your browser is currently set to block cookies

.cookie-warning ul { margin: 10px 0; padding-left: 20px; color: #666; font-size: 13px; } // Set up event listeners once DOM is

document.body.appendChild(modal);

.enable-btn:hover { background: #f57c00; } const warningEl = document.getElementById('cookie-warning')