/* Timer component styles for the Flow State app */

#timer {
  font-family: 'Courier New', monospace;
  font-size: 4rem; /* Increased from 3rem to 4rem */
  text-align: center;
  margin-bottom: 16px; /* Increased from 12px to 16px for better spacing */
  color: var(--accent);
  font-weight: bold; /* Added to make timer more prominent */
}

#timerLabel {
  text-align: center;
  font-size: 1.2rem; /* Increased from 1rem to 1.2rem */
  margin-bottom: 6px; /* Increased from 4px to 6px */
  color: var(--muted);
  font-weight: 500; /* Added for better visibility */
}

.progress-bar {
  width: 100%;
  height: 8px;
  background: var(--bg);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 16px;
}

.progress {
  width: 0;
  height: 100%;
  background: var(--accent);
  transition: width var(--transition);
}

.controls {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 16px;
}

.controls button {
  padding: 8px 12px;
  font-size: 0.9rem;
}

/* Style for the +5 min button */
#addTimeBtn {
  background-color: var(--accent);
  color: var(--bg);
  border: 1px solid var(--accent);
  transition: all var(--transition);
}

#addTimeBtn:hover:not(:disabled) {
  background-color: var(--bg);
  color: var(--accent);
}

#addTimeBtn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Sound notification control styles */
#soundSettings {
  margin-top: 12px;
}

.sound-controls {
  display: flex;
  align-items: center;
  margin-top: 10px;
}

.sound-controls label {
  margin-right: 10px;
  font-size: 0.875rem;
}

#soundToggle {
  margin-right: 8px;
}