/* ── Turn pill ────────────────────────────────────────────────────────
   Dark-charcoal pill shown below the header during gameplay:
     "Paars is aan zet" / "Groen is aan zet" / "Paars denkt na"
   Hidden once the game ends (the finish modal takes over). */

.turn-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  min-height: 38px;
  background: #363534;
  color: #ffffff;
  font-size: 12px;
  font-weight: var(--font-weight-bold);
  line-height: 1.2;
  border-radius: 10px;
  text-align: center;
  white-space: nowrap;
  flex-shrink: 0;
  margin: 0;
}

.turn-pill[hidden] {
  display: none;
}
