.sale-countdown-timer {
  background-color: #ee3239 !important; /* Updated red color as requested */
  color: #ffffff; /* White text */
  border-radius: 4px;
  padding: 8px 12px;
  margin-bottom: 10px;
  text-align: center;
  font-weight: bold;
  font-family: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  z-index: 100;
  position: relative;
  flex-wrap: nowrap;
  white-space: nowrap;
}

.countdown-label {
  margin-right: 8px;
}

.countdown-box {
  background-color: #ffffff;
  color: #ee3239 !important; /* Red text inside white box */
  border-radius: 3px;
  padding: 4px 8px;
  display: inline-block;
  white-space: nowrap;
}

.sale-countdown-timer span {
  font-size: 16px;
  font-weight: 700;
}

/* Responsive styles */
@media (max-width: 768px) {
  .sale-countdown-timer {
    font-size: 14px;
  }

  .sale-countdown-timer span {
    font-size: 14px;
  }
}

