.slider-container {
  position: relative;
  width: 100%;
  height: 3px;
  background: #e7e7e7; /* Light grey track */
  border-radius: 1.5px;
}
.slider-fill {
  height: 100%;
  background: #bdbdbd; /* Darker grey for filled portion */
  border-radius: 1.5px;
  transition: width 0.2s ease;
}
.slider-thumb {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 18px;
  height: 18px;
  background: #ffffff; /* White thumb */
  border: 2px solid #bdbdbd; /* Grey border */
  border-radius: 50%;
  cursor: pointer;
  transition: transform 0.2s ease;
}
.slider-thumb:hover {
  transform: translate(-50%, -50%) scale(1.2);
}
.slider-thumb::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  background: #bdbdbd; /* Grey dot */
  border-radius: 50%;
}

.diagonal-line {
  position: relative;
  width: 100%;
  height: 85%;
  overflow: hidden;
}
.diagonal-line::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 141.42%;
  height: 1px;
  background: #000000;
  transform: rotate(45deg);
  transform-origin: top left;
}

.custom-shadow {
  box-shadow: 0 4px 3px 0px rgba(130, 132, 134, 0.3);
}

.custom-shadow2 {
  box-shadow: 0 0px 4px 1px rgba(0, 0, 0, 0.3);
}

input:focus {
  outline: none;
  box-shadow: none;
}

.dual-gradient {
  background: linear-gradient(
      to bottom right,
      rgba(239, 246, 255, 0.9),
      rgba(161, 180, 204, 0.9)
    ),
    linear-gradient(
      to top right,
      rgba(239, 246, 255, 0.9),
      rgba(161, 180, 204, 0.9)
    );
}

.peer:checked ~ .peer-checked\:bg-blue-600 {
  --tw-bg-opacity: 1;
  background-color: #585a96;
}

@media only screen and (max-width: 430px) {
  .container {
    width: 95% !important;
    min-height: 744px;
  }

  .button-container {
    width: 100% !important;
    justify-content: center !important;
  }
}

@media only screen and (max-width: 745px) {
  .icon5 {
    display: none !important;
  }
}

@media only screen and (max-width: 700px) {
  .icon2 {
    display: none !important;
  }
}

@media only screen and (max-width: 635px) {
  .icon1 {
    display: none !important;
  }
}

@media only screen and (max-width: 585px) {
  .icon4 {
    display: none !important;
  }
}

@media only screen and (max-width: 530px) {
  .icon3 {
    display: none !important;
  }
}

@media only screen and (max-width: 485px) {
  .icon-text {
    display: none !important;
  }
}

@media only screen and (max-width: 485px) {
  .icon-row {
    gap: 12px;
  }
  #time {
    font-size: 12px;
  }
  .time-container {
    gap: 12px;
  }
}
