.dance-stage-panel {
  display: flex;
  justify-content: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-drip);
  padding: 1.5rem;
  max-width: 640px;
  margin: 1.5rem auto;
}

#dance-stage {
  background: var(--surface-2);
  border-radius: var(--radius);
}

.dance-picker-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
  text-align: center;
  margin: 1rem 0 0.25rem;
}

.dance-picker {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 0.25rem;
}

.dance-controls {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.dance-generator-controls {
  /* Stacked, not side-by-side - a button squeezed next to the input on a
     narrow phone screen is a small, awkward tap target near the edge. */
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  max-width: 480px;
  margin: 1.5rem auto 0;
}

.dance-generator-controls input {
  width: 100%;
  font-family: var(--font-body);
  background: var(--surface-2);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  color: var(--paper);
  padding: 0.5rem 0.7rem;
}

.dance-generator-controls button {
  width: 100%;
}

.dance-generator-status {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--spray-yellow);
  text-align: center;
  min-height: 1.2em;
  margin: 0.5rem 0 0;
}
