.nci-widget {
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 16px;
  background: #a1a8a1;
  max-width: 720px;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.nci-widget h3 { margin: 0 0 12px; font-size: 1.2rem; }

.nci-tabs { display: flex; gap: 8px; margin-bottom: 12px; }
.nci-tab { cursor: pointer; background: #f1f5f9; border: 1px solid #cbd5e1; padding: 8px 12px; border-radius: 8px; font-weight: 600; }
.nci-tab-active { background: #0ea5e9; color: #fff; border-color: #0ea5e9; }

.nci-panel { margin-top: 4px; }
.nci-hidden { display: none; }

.nci-row {
  display: grid;
  grid-template-columns: 200px 1fr 120px;
  gap: 8px;
  align-items: center;
  margin: 8px 0;
}
.nci-row label { font-weight: 600; }
.nci-row input[type="text"], .nci-row input[type="number"], .nci-row select {
  width: 100%;
  padding: 8px;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
}

.nci-btn { margin-top: 4px; padding: 10px 14px; border-radius: 8px; background: #0ea5e9; color: white; border: none; cursor: pointer; font-weight: 700; }
.nci-btn:hover { background: #0284c7; }

.nci-output {
  border: 1px dashed #94a3b8;
  background: #f8fafc;
  padding: 10px;
  border-radius: 8px;
  margin-top: 10px;
}

.nci-error {
  color: #b91c1c;
  background: #fef2f2;
  border: 1px solid #fecaca;
  padding: 8px;
  border-radius: 8px;
  margin-top: 10px;
}

.nci-meta { margin-top: 8px; color: #475569; font-size: 0.9rem; }
.nci-notes { margin-top: 12px; }

@media (max-width: 640px) {
  .nci-row { grid-template-columns: 1fr; }
}