/* station-card.css */

#stations {
  overflow-y: auto;
  max-height: 100vh;
}

.station-card {
  padding: 6px 8px;
  border-bottom: 1px solid #333;
  background: #111;
  /* font-family: monospace; */
}

/* ===== header row ===== */
.station-header {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  margin-bottom: 4px;
}

.station-name {
  margin: 0;
  line-height: 1;
}

/* ===== status indicator ===== */
.status-led {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #666;
  flex-shrink: 0;
}

/* ONLINE */
.station-card.online .status-led {
  background: #3cff3c;
}

/* OFFLINE */
.station-card.offline .status-led {
  background: #ffcc33;
}

.station-card.focused {
  background: rgba(255, 255, 255, 0.06);
  transition: background 1.5s ease-out;
}

.eigen-mini {
  margin-top: 4px;
}