/* Shared UI helpers */ function TrashIcon() { return ( ); } function deButtonStyle(color, filled) { return { display: 'inline-flex', alignItems: 'center', justifyContent: 'center', gap: 8, padding: '11px 16px', borderRadius: 22, border: `1px solid ${filled ? color : color + '55'}`, background: filled ? color : `${color}12`, color: filled ? 'var(--theme-on-accent)' : color, fontFamily: 'Poppins, sans-serif', fontWeight: 700, fontSize: 14, cursor: 'pointer', transition: 'all 0.25s ease', whiteSpace: 'nowrap', }; }