.timer-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 50px;
}

#timer {
  font-size: 2em;
  margin-bottom: 20px;
}

button {
  padding: 10px 20px;
  font-size: 1em;
}

/* Popup base styling */
.popup {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 20px;
  background-color: white;
  border: 2px solid #000;
  z-index: 1000;
  text-align: center;
}

.popup.hidden {
  display: none;
}

.popup.visible {
  display: block;
}

/* Discount popup specific styles */
#discountPopup {
  /* If you need any specific styling for the discount popup */
}

/* Almost popup specific styles */
#almostPopup {
  /* If you need any specific styling for the "Almost, try again" popup */
}

#closePopupBtn, #closeAlmostPopupBtn {
  margin-top: 20px;
}
