/* airspace.css — airspace status panel
 * Booth variant: compact info panel.
 * Dashboard variant: control strip with override button.
 */

.cfm-airspace {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

/* The wordmark "AIRSPACE" — the one place r/g/g lives outside the player */
.cfm-airspace__wordmark {
  font-size: var(--font-size-sm);
  letter-spacing: var(--letter-spacing-wide);
  font-weight: var(--font-weight-medium);
  margin: 0 0 var(--space-2);
}

.cfm-airspace__wordmark span:nth-child(1) { color: #008000; }
.cfm-airspace__wordmark span:nth-child(3) { color: var(--color-accent-warning); }
.cfm-airspace__wordmark span:nth-child(2),
.cfm-airspace__wordmark span:nth-child(4),
.cfm-airspace__wordmark span:nth-child(5),
.cfm-airspace__wordmark span:nth-child(6),
.cfm-airspace__wordmark span:nth-child(7),
.cfm-airspace__wordmark span:nth-child(8) {
  color: var(--color-accent-secondary);
}

.cfm-airspace__current {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  background: var(--color-bg-primary);
  border: 0.5px solid var(--color-border-subtle);
  border-radius: var(--radius-md);
  padding: var(--space-2) var(--space-3);
}

.cfm-airspace__current-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-accent-primary);
  flex-shrink: 0;
}

.cfm-airspace[data-state="live"] .cfm-airspace__current-dot { background: var(--color-status-live-fg); }
.cfm-airspace[data-state="takeover"] .cfm-airspace__current-dot { background: var(--color-accent-warning); }

.cfm-airspace__label {
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-medium);
  color: var(--color-fg-primary);
  letter-spacing: 0.05em;
}

.cfm-airspace__sublabel {
  font-size: var(--font-size-xs);
  color: var(--color-fg-muted);
}

.cfm-airspace__next {
  font-size: var(--font-size-xs);
  color: var(--color-fg-muted);
}

.cfm-airspace__next strong {
  color: var(--color-accent-secondary);
  font-weight: var(--font-weight-medium);
}

/* Dashboard variant: now-bar with destructive button */
.cfm-airspace--dashboard {
  background: var(--color-bg-secondary);
  border: 0.5px solid var(--color-border-subtle);
  border-radius: var(--radius-lg);
  padding: var(--space-3) var(--space-4);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  gap: var(--space-4);
}
