class CustomNavbar extends HTMLElement { connectedCallback() { this.attachShadow({ mode: 'open' }); this.shadowRoot.innerHTML = ` `; this.shadowRoot.getElementById('menuToggle').addEventListener('click', () => { const sidebar = document.querySelector('custom-sidebar'); sidebar.toggleAttribute('open'); }); } } customElements.define('custom-navbar', CustomNavbar);