/* Add here all your CSS customizations */
#header .header-row {
	display: flex;
	flex-grow: 0;
	align-items: center;
	align-self: stretch;
	max-height: 100%;
}

.timer-box {
  text-align: center;
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
  min-width: 60px;
  transition: all 0.2s ease;
}

.timer-box:hover {
  border-color: #d0d0ff;
  background: #f9f9ff;
}

.timer-value {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.2;
  font-family: "Inter", sans-serif;
  color: #2c2c2c;
}

.timer-label {
  font-size: 0.8rem;
  color: #888;
  margin-top: 2px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@media (max-width: 575.98px) {
  .timer-value { font-size: 1.5rem; }
  .timer-box { min-width: 50px; padding: 0.4rem 0.5rem; }
}


.bg-color-light {
  background: #fff !important;
}

.bg-color-grey {
  background: #eefaff !important;
}