/* Chlorination / Disinfection Simulator — Styles */
/* Extends ../../shared/simulator-theme.css */

/* ── Simulator-specific variable overrides ─────────────────────────── */
/* :root { } */

/* ── Additional component styles ───────────────────────────────────── */
.gauge-row {
  margin-bottom: 6px;
}
.gauge-label {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 2px;
}
.gauge-label span:first-child {
  font-size: 10px;
  color: var(--m1);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.gauge-value {
  font-family: var(--f1);
  font-size: 14px;
  color: var(--grn);
}
.gauge-value.warn { color: var(--amb); }
.gauge-value.alarm { color: var(--red); animation: blink 0.6s infinite; }
.gauge-unit {
  font-size: 10px;
  color: var(--m1);
  margin-left: 2px;
}
.gauge-bar-track {
  height: 8px;
  background: rgba(255,255,255,0.05);
  border-radius: 2px;
  overflow: hidden;
  border: 1px solid var(--b1);
}
.gauge-bar {
  height: 100%;
  background: var(--grn);
  transition: width 0.3s, background 0.3s;
  border-radius: 2px;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}
