import { html, css, LitElement } from 'lit' import { customElement, state } from 'lit/decorators.js' @customElement('kpi-value-entry') export class KpiValueEntry extends LitElement { static styles = css` .entry-container { background: #fff; border-radius: 16px; padding: 32px; box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04); margin-bottom: 16px; } .entry-title { font-size: 1.5rem; font-weight: bold; margin-bottom: 16px; } .entry-form { display: flex; gap: 12px; align-items: center; } .entry-input { padding: 8px 12px; border-radius: 8px; border: 1px solid #ccc; font-size: 1rem; width: 120px; } .entry-btn { padding: 8px 20px; border-radius: 8px; background: #3a3ad6; color: #fff; border: none; font-size: 1rem; cursor: pointer; transition: background 0.2s; } .entry-btn:hover { background: #2222aa; } .entry-note { font-size: 0.95rem; color: #888; margin-top: 8px; } ` @state() value = '' render() { return html`