// Global Keyboard Shortcuts (ESC & Cmd/Ctrl+Enter) window.addEventListener('keydown', (e) => { if (e.key === 'Escape') { const modals = document.querySelectorAll('.modal-backdrop, .dialog-overlay, .dropdown-menu.show'); modals.forEach(m => m.style.display = 'none'); } if ((e.metaKey || e.ctrlKey) && e.key === 'Enter') { const primaryBtn = document.querySelector('.btn-primary:not([disabled])'); if (primaryBtn) primaryBtn.click(); } });