/* ============================================================
   Station Cards – Command Deck Style
   ============================================================ */

.station-card {
  padding: 16px;
  border-bottom: 1px solid #2b3440;
  cursor: pointer;
  background: transparent;
  transition: background 0.15s ease, box-shadow 0.15s ease;
}

/* ⭐ 非選択カードのみhover反応 */
.station-card:not(.station-highlight):hover {
  background: rgba(255, 255, 255, 0.03);
}

/* ---------- Title ---------- */

.station-title {
  font-size: 13px;
  letter-spacing: 1px;
  margin-bottom: 14px;
  color: #6fe3a3;
}

/* ---------- Metric block ---------- */

.station-metric {
  margin-bottom: 12px;
}

.station-label {
  font-size: 10px;
  letter-spacing: 1px;
  color: #7f8b99;
  margin-bottom: 4px;
}

/* ---------- Gauge bar ---------- */

.station-bar {
  height: 6px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid #2b3440;
  position: relative;
  overflow: hidden;
}

.station-bar-fill {
  height: 100%;
  width: 0%;
  transition: width 120ms ease-out;
}

.station-value {
  font-family: monospace;
  font-size: 12px;
  color: #6fe3a3;
  margin-top: 4px;
}

.station-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.station-led {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #2b3440;
  transition: all 0.2s ease;
}

/* ---------- Gauge fill colors ---------- */

.station-bar-fill.lambda-fill {
  box-shadow: 0 0 8px rgba(111, 227, 163, 0.35);
}

.station-bar-fill.gap-fill {
  box-shadow: 0 0 8px rgba(255, 193, 7, 0.30);
}

/* ---------- Selected state ---------- */

.station-highlight {
  background: rgba(111, 227, 163, 0.12);
  box-shadow: inset 0 0 18px rgba(111, 227, 163, 0.35);
  border-left: 3px solid #6fe3a3;
}

/* ---------- Waterfall ---------- */
.station-waterfall {

  width: 100%;
  height: 120px;

  background: #000;

  border: 1px solid rgba(120,255,120,0.15);

  margin: 6px 0;
}
