/* Modal styling */
#siteModal .modal-content.has-background {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

#siteModal .modal-content.has-background::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.1);
  z-index: 0;
}

#siteModal .modal-content.has-background .modal-header,
#siteModal .modal-content.has-background .modal-body,
#siteModal .modal-content.has-background .modal-footer {
  position: relative;
  z-index: 1;
  background-color: transparent;
}

#siteModal .close {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 24px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}

#siteModal {
    color: white;
}

#siteModal .modal-time-info{
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
}

#siteModal .modal-body {
    display: flex;
    flex-direction: column;
}

#siteModal .modal-text {
    text-align: center;
    font-weight: 700;
    font-size: 18px;
}

#siteModal .modal-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

#siteModal .modal-countdown {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    justify-items: center;
    margin: 24px 0;
}

#siteModal .modal-countdown > div {
    display: flex;
    align-items: center;
    flex-direction: column;
}

#siteModal .modal-countdown .modal-countdown-value {
    background-color: gray;
    color: white;
    font-size: 30px;
    font-weight: 700;
    padding: 10px;
    border-radius: 4px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}
