/* Overall countdown block */
#countdown-timer {
  text-align: center;          /* centers title + blocks */
  font-family: system-ui, sans-serif;
}

/* Row of "Days | Hours | Minutes | Seconds" */
#countdown-timer .countdown-timer {
  display: flex;
  justify-content: center;     /* center row within the container */
  gap: 1.5rem;                 /* space between each unit */
}

/* Each unit: Days / Hours / etc. */
.countdown-days,
.countdown-hours {
  display: flex;
  flex-direction: column;      /* number on top, label below */
  align-items: center;
}

/* Number area (the digits) */
.countdown-number {
  display: flex;               /* put digit spans in a row */
  gap: 0.2rem;
  font-size: 2rem;
  font-weight: bold;
}

/* Optional: label styling */
.countdown-label {
  margin-top: 0.25rem;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
