/* Minimal styles for the Sunwise Solar Calculator plugin */
:root{--bg:#f8fafc;--card:#ffffff;--muted:#6b7280;--primary:#fbbf24;--accent:#0ea5a4;--border:#e6edf3}
.sunwise-solar-root{font-family:Inter, system-ui, -apple-system,Segoe UI,Roboto,Helvetica,Arial;color:#0f172a}
.sunwise-card{background:var(--card);border:1px solid var(--border);border-radius:8px;padding:16px;box-shadow:0 6px 18px rgba(15,23,42,0.06)}
.sunwise-header{display:flex;align-items:center;gap:12px;margin-bottom:12px}
.sunwise-title{font-size:20px;font-weight:700}
.sunwise-sub{color:var(--muted);font-size:13px}
.sunwise-grid{display:grid;grid-template-columns:1fr 360px;gap:16px}
.sunwise-list{display:flex;flex-direction:column;gap:8px}
.sunwise-row{display:grid;grid-template-columns:1fr 72px 90px 100px 80px 110px 48px;gap:8px;align-items:center;padding:8px;border-radius:6px;border:1px solid var(--border);background:linear-gradient(180deg, rgba(250,250,250,1), rgba(255,255,255,1))}
.sunwise-row.header-row{background:transparent;border-color:transparent;padding:6px 8px}
.sunwise-row.header-row .sunwise-small{color:var(--muted)}
/* Add Item button hidden until hover on card */
.add-btn{opacity:0;transition:opacity .15s ease}
.sunwise-card:hover .add-btn{opacity:1}
/* Make header labels bold */
.sunwise-row.header-row{font-weight:600}
.sunwise-input{width:100%;padding:8px;border:1px solid #d7e0ea;border-radius:6px}
.sunwise-small{font-size:13px;color:var(--muted)}
.sunwise-actions{display:flex;gap:8px;align-items:center}
.btn{display:inline-flex;align-items:center;gap:8px;padding:8px 12px;border-radius:6px;border:none;cursor:pointer}
.btn-primary{background:var(--primary);color:#05203a;font-weight:600}
.btn-ghost{background:transparent;border:1px solid var(--border)}
.btn-icon{width:36px;height:36px;display:inline-grid;place-items:center}
.results{display:flex;flex-direction:column;gap:8px}
.result-row{display:flex;justify-content:space-between;padding:8px;border-radius:6px;background:#f8fafc;border:1px solid var(--border)}
.footer-note{font-size:12px;color:var(--muted);margin-top:12px}
@media(max-width:900px){.sunwise-grid{grid-template-columns:1fr}}
