/* ============================================================
   GAIP Water Blend – Clean White Theme
   ============================================================ */

:root {
  --accent: #22c55e;
  --accent-soft: rgba(34,197,94,0.15);
  --border: #d1d5db;
  --text-main: #111;
  --text-soft: #444;
  --radius: 6px;
  --bg: #ffffff;
  --bg-card: #ffffff;
}

/* Overall wrapper */
#gaip-blend-wrap {
  background: var(--bg);
  color: var(--text-main);
  padding: 20px;
  border-radius: var(--radius);
  max-width: 900px;
  margin: 0 auto;
  font-family: system-ui, sans-serif;
}

/* Card layout */
.blend-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 16px;
  border-radius: var(--radius);
  margin-bottom: 20px;
}

.blend-card h3 {
  margin-top: 0;
  color: var(--accent);
  font-size: 18px;
}

/* Field labels */
.blend-card label {
  display: block;
  margin-top: 10px;
  font-size: 14px;
  color: var(--text-soft);
}

/* Inputs */
.blend-card input, 
select {
  width: 100%;
  padding: 8px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  margin-top: 4px;
  background: #fafafa;
  color: #000;
}

/* Buttons */
button {
  padding: 8px 14px;
  margin-right: 8px;
  margin-bottom: 18px;
  border-radius: var(--radius);
  background: var(--accent);
  border: none;
  font-weight: 600;
  color: #000;
  cursor: pointer;
}

button:disabled {
  background: #ccc;
  color: #666;
  cursor: not-allowed;
}

/* Output blocks */
.preview-box,
.blend-output-block,
.optimise-output-block {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px;
  white-space: pre-wrap;
  min-height: 65px;
  font-size: 14px;
  margin-bottom: 20px;
}

/* Headings above outputs green, simple */
#gaip-blend-wrap h3 {
  color: var(--accent);
}
