class ProgressCard extends HTMLElement { connectedCallback() { const title = this.getAttribute('title') || ''; const value = this.getAttribute('value') || '0'; const icon = this.getAttribute('icon') || 'activity'; const color = this.getAttribute('color') || 'bg-indigo-500'; this.attachShadow({ mode: 'open' }); this.shadowRoot.innerHTML = `