.schedule-tour-box {
border: 1px solid #ddd;
    padding: 10px;
    border-radius: 10px;
    background: #f9fbfd;
    font-family: 'Segoe UI', sans-serif;
    text-align: center;
}

/* .date-strip {
  display: flex;
  overflow-x: auto;
  gap: 10px;
  margin-bottom: 15px;
} */
.pts-date-slider-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.date-strip {
  display: flex;
  overflow-x: hidden;
  scroll-behavior: smooth;
  gap: 8px;
  padding: 10px 4px;
  max-width: 250px;
}

.date-item {
  background: white;
  border-radius: 6px;
  min-width: 70px;
  border: 1px solid #ccc;
  font-family: 'Segoe UI', sans-serif;
  text-align: center;
  cursor: pointer;
  transition: 0.2s ease-in-out;
  box-shadow: none;
  overflow: hidden;
}

.date-item.active {
  color: #fff;
  border-color: #ccc;
}

.pts-prev-arrow, .pts-next-arrow {
background: none !important;
    border: none;
    border-radius: 50%;
    font-size: 18px;
    padding: 6px 10px;
    cursor: pointer;
    margin: 0 0;
    color: #000;
}
.pts-prev-arrow:hover, .pts-next-arrow:hover {
     color: #000;
}
.tour-form-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.tour-form-left, .tour-form-right {
  flex: 1 1 45%;
  min-width: 280px;
}

.tour-form-left h3 {
  margin-bottom: 15px;
}
/* 
.date-item {
  background: white;
  border-radius: 6px;
  padding: 10px;
  text-align: center;
  cursor: pointer;
  min-width: 60px;
  border: 2px solid transparent;
}

.date-item.active {
  background: #f1c94e;
  color: white;
  border-color: #f1c94e;
} */

.day {
  font-weight: bold;
}
.date-item .day {
  background: #e0b845;
  color: white;
  font-weight: bold;
  padding: 5px 0;
  font-size: 12px;
  text-transform: uppercase;
}
.date-item.active .num
{
color:  #f1c94e;;
}
.date-item .num {
  font-size: 24px;
  font-weight: bold;
  padding: 6px 0 0;
  color: #333;
}

.date-item .month {
  font-size: 12px;
  color: #666;
  padding-bottom: 6px;
  text-transform: uppercase;
}

.date-item.active {
  transform: scale(1.1);
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  z-index: 2;
  border: 1px solid #f1c94e;
}

.time-picker {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 15px;
}

#scheduleBtn {
  background: #f1c94e;
  border: none;
  padding: 10px;
  width: 100%;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
  line-height: 12px;
}
/* Fullscreen black overlay */
.pts-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0,0,0,0.6);

    align-items: center;
    justify-content: center;
}

/* Centered popup form */
.pts-modal-content {
    background: #fff;
    padding: 30px;
    max-width: 500px;
    width: 90%;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    position: relative;
  animation: popupFade 0.3s ease-out;
}

/* Close button */
.pts-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
}

/* Animation */
@keyframes popupFade {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
