
.saigo-reservation-wrap {
  background: #244a38;
  padding: 60px 30px;
  color: #fff;
  font-family: Arial, sans-serif;
}

.saigo-card {
  max-width: 1000px;
  margin: 0 auto;
}

.saigo-header {
  text-align: center;
  margin-bottom: 20px; /* Increased spacing */
}

.saigo-progress {
  height: 8px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  overflow: hidden;
  max-width: 80%;
  margin: 0 auto;
}

.saigo-progress span {
  display: block;
  width: 0%;
  height: 100%;
  background: #fff;
  transition: width .35s ease;
}

.saigo-body {
  padding: 0px;
}

.saigo-title-r {
  text-align: center;
  color: #fff;
  font-size: 36px !important; /* Reduced from 26px */
  font-weight: 600; /* Bolder instead of underline */
  margin-bottom: 25px; /* Increased spacing */
}

.saigo-step {
  display: none;
  animation: fadeIn .3s ease;
}

.saigo-step.active {
  display: block;
}

.saigo-people-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin: 18px 0;
}

.saigo-btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  padding: 12px 6px; /* Adjusted padding */
  font-size: 18px; /* Adjusted font size */
  border-radius: 10px;
  cursor: pointer;
  transition: all .18s ease;
}

.saigo-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(255, 255, 255, 0.06);
}

.saigo-person.active,
.saigo-time.active {
  background: #ffffff22;
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.saigo-cal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  margin-bottom: 15px; /* Increased spacing */
}

.saigo-month-year {
  font-size: 24px; /* Adjusted font size */
  font-weight: 600;
}

.saigo-cal-nav {
  background: transparent;
  border: none;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
}

/* *** CALENDAR FIXES START *** */

/* Ensure text is centered for weekdays */
.saigo-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  color: #ddd;
  margin-bottom: 8px;
  text-align: center;
  font-size: 14px; /* Adjusted font size */
}

/* Reduced gap for day cells */
.saigo-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
}

/* Adjusted padding for day cells */
.saigo-day {
  padding: 10px 4px;
  border-radius: 8px;
  text-align: center;
  cursor: pointer;
  color: #888;
  background: transparent;
}

/* *** CALENDAR FIXES END *** */

.saigo-day:hover {
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
}

.saigo-day.disabled {
  color: #444;
  cursor: not-allowed;
}

.saigo-day.selected {
  background: #1e88e5;
  color: #fff;
  font-weight: 700;
}

.saigo-time-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 12px;
}

.saigo-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 2%;
  margin: 6px 0;
}

.saigo-row input,
.saigo-row input[type="text"],
.saigo-row input[type="tel"],
.saigo-row input[type="email"] {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: none;
  background: rgba(0, 0, 0, 0.12);
  color: #fff;
  margin: 0;
}

.saigo-textarea {
  min-height: 140px;
  padding: 12px;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.12);
  color: #fff;
  border: none;
  width: 100%;
  box-sizing: border-box;
  margin: 10px 0;
}

.saigo-actions {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 20px; /* Increased spacing */
}

.saigo-back,
.saigo-submit {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff;
  padding: 10px 18px;
  border-radius: 8px;
  cursor: pointer;
}

.saigo-thanks {
  color: #fff;
  font-size: 16px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --- RESPONSIVE STYLES --- */

@media (max-width:800px) {
  .saigo-reservation-wrap {
    padding: 40px 20px;
  }

  .saigo-body {
    padding: 10px;
  }

  .saigo-people-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  .saigo-title-r {
    font-size: 28px !important;
    margin-bottom: 20px;
  }

  .saigo-row {
    grid-template-columns: 1fr;
    gap: 10px 0;
  }

  .saigo-month-year {
    font-size: 20px;
  }

  .saigo-weekdays {
    font-size: 13px;
  }

  .saigo-day {
    font-size: 14px;
    padding: 8px 2px;
  }

  .saigo-days {
    gap: 4px;
  }

  .saigo-time-grid {
    grid-template-columns: repeat(2, 1fr);
    gap:10px;
  }
}

@media (max-width: 480px) {
  .saigo-reservation-wrap {
    padding: 30px 10px;
  }

  .saigo-body {
    padding: 5px;
  }

  .saigo-title-r {
    font-size: 24px !important;
    margin-bottom: 15px;
  }

  .saigo-btn {
    padding: 10px 6px;
    font-size: 16px;
  }

  .saigo-people-grid {
    gap: 10px;
  }

  .saigo-month-year {
    font-size: 18px;
  }

  .saigo-cal-nav {
    font-size: 20px;
  }

  .saigo-weekdays {
    font-size: 12px;
  }

  .saigo-day {
    padding: 6px 1px;
    font-size: 13px;
  }

  .saigo-time-grid {
    gap: 10px;
  }

  .saigo-actions {
    flex-direction: column;
  }

  .saigo-back, .saigo-submit {
    width: 100%;
    text-align: center;
  }
}
