/* body {
  font-family: Arial, sans-serif;
  text-align: center;
  background-color: #f9f9f9;
  margin: 0;
  padding: 20px;
} */

.title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
}

.carousel {
  width: 90%;
  overflow: hidden;
  margin: auto;
  position: relative;
  border-radius: 10px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.carousel-track {
  display: flex;
  transition: transform 0.5s linear;
  cursor: grab;
}

.carousel-track img {
  width: 100%;
  max-width: 300px;
  margin: 0 10px;
  border-radius: 10px;
  user-select: none;
}
.custom-slider {
  -webkit-appearance: none;
  width: 100%;
  height: 10px;
  border-radius: 5px;
  outline: none;
  background: linear-gradient(to right, #fd6b66 0%, #f5f5f5 0%);
  transition: background 0.3s;
}

.custom-slider::-webkit-slider-runnable-track {
  height: 10px;
  border-radius: 5px;
}

.custom-slider::-moz-range-track {
  height: 10px;
  border-radius: 5px;
}

.custom-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  background: #fd6b66;
  border-radius: 50%;
  cursor: pointer;
  margin-top: -5px;
}

.custom-slider::-moz-range-thumb {
  width: 20px;
  height: 20px;
  background: #fd6b66;
  border-radius: 50%;
  cursor: pointer;
}
.d-none {
  display: none !important;
}
.open {
  display: block !important;
}
.popup {
  display: none;
  width: 87%;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  text-align: center;
}
.popup2 {
  display: none;
  width: 43%;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  text-align: center;
}
.disabled-btn {
  background-color: #ccc !important;
  cursor: not-allowed !important;
  opacity: 0.6;
}
@media (max-width: 768px) {
  .desktop-apply {
    display: none !important;
  }
  .mobile-apply {
    display: block !important;
  }
}
@media (min-width: 768px) {
  .desktop-apply {
    display: block !important;
  }
  .mobile-apply {
    display: none !important;
  }
}
