/* ==========================================================================
   INLINE POMODORO FOCUS TIMERS
   ========================================================================== */
.pomo-timer-module {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-input);
  border: 1px solid var(--border-subtle);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
}

.pomo-time-display {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  color: var(--text-primary);
  min-width: 46px;
  text-align: center;
}

.pomo-btn {
  background: transparent;
  border: none;
  color: var(--text-secondary);
  cursor: pointer;
  width: 24px;
  height: 24px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  transition: all var(--transition-fast);
}

.pomo-btn:hover {
  background: var(--bg-surface);
  color: var(--accent-primary);
  transform: scale(1.1);
}

.pomo-timer-module.running {
  border-color: var(--accent-rose);
  box-shadow: 0 0 8px rgba(244, 63, 94, 0.3);
  animation: pulseTimer 2s infinite ease-in-out;
}

@keyframes pulseTimer {
  0%, 100% { border-color: rgba(244, 63, 94, 0.4); }
  50% { border-color: rgba(244, 63, 94, 0.9); }
}

.pomo-timer-module.running .pomo-time-display {
  color: var(--accent-rose);
}
