.live-meta {
  font-family: var(--font-mono);
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.5;
}

.live-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  gap: 1rem;
}

.live-section-card {
  background: var(--bg-input);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1rem;
}

.live-section-card--aggregate {
  background: var(--bg-panel);
}

.live-section-title {
  margin: 0 0 0.8rem;
  font-size: 1rem;
  font-weight: 700;
}

.live-metrics-stack {
  display: grid;
  gap: 0.75rem;
}

.live-metric-cell {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.75rem;
}

.live-metric-value {
  font-size: 1.7rem;
  line-height: 1.1;
  font-weight: 700;
  font-family: var(--font-mono);
}

.live-metric-label {
  margin-top: 0.25rem;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.live-empty {
  color: var(--text-muted);
  padding: 0.5rem 0;
}

.live-worker-overrides {
  display: grid;
  gap: 0.65rem;
}

.live-worker-row {
  display: grid;
  grid-template-columns: 1fr 90px;
  gap: 0.5rem;
  align-items: center;
}

.live-worker-section {
  font-size: 0.85rem;
  font-weight: 600;
}

.live-worker-input {
  width: 100%;
  padding: 0.4rem 0.55rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-mono);
  font-size: 0.9rem;
}

@media (max-width: 1200px) {
  .live-cards-grid {
    grid-template-columns: repeat(2, minmax(220px, 1fr));
  }
}

@media (max-width: 760px) {
  .live-cards-grid {
    grid-template-columns: 1fr;
  }
}
