/* Pomodoro Timer — phase label, big countdown, cycle dots. */

.pomo-phase {
  text-align: center;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-top: 8px;
}

.pomo-display {
  text-align: center;
  font-family: var(--mono);
  font-size: clamp(3.5rem, 14vw, 6rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--text);
  margin: 6px 0 10px;
  font-variant-numeric: tabular-nums;
}

.pomo-display.running { color: var(--accent); }

.pomo-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 6px;
}

.pomo-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: transparent;
  display: inline-block;
}

.pomo-dot.filled { background: var(--accent); border-color: var(--accent); }

.pomo-count {
  text-align: center;
  color: var(--muted);
  font-size: 0.88rem;
  margin-bottom: 10px;
}

.pomo-controls { justify-content: center; }
.pomo-settings { justify-content: center; }
.pomo-settings input[type="number"] { width: 72px; }
