 

/* Root Variables for Global Styles */
:root {
  --primary-bg: linear-gradient(145deg, #1c2438, #2b3a56, #3a4a6f);
  --primary-color: #ffffff;
  --accent-color: #FFD700;
  --accent-hover: #E6B800;
  --input-bg: #ffffff;
  --input-color: #000000;
  --button-active: #950870;
  --button-inactive: #c0c0c0;
  --font-size-lg: clamp(1.3rem, 2vw, 1.6rem);
  --font-size-md: clamp(1.1rem, 2vw, 1.3rem);
  --font-size-sm: clamp(0.95rem, 1.5vw, 1.1rem);
  
  --security-icon-color: #FFD700;
  --security-text-color: #ffffff;
  --security-font-size: clamp(14px, 1.2vw, 18px);
  --security-text-size: clamp(12px, 1vw, 16px);

}

.form-container-wrapper {
  font-family: 'Roboto', 'Helvetica Neue', Arial, sans-serif;
  background-color: #f5f5f5;
  min-height: 100dvh;
  width: 100%;
  max-width: 1140px;
  padding: clamp(1rem, 2vh, 2rem);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  box-sizing: border-box;
  overflow-x: hidden;
  overflow-y: auto;
}
.form-container-wrapper input,
.form-container-wrapper textarea,
.form-container-wrapper button,
.form-container-wrapper select {
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
.form-container .input-wrapper {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  position: relative;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
  padding-left: 1rem;
  padding-right: 1rem;
}

.form-container .form-input:focus,
.form-container .form-input.error:focus,
.form-container .phone-input.error:focus {
  outline: none;
  border-color: var(--button-active);
  box-shadow: 0 0 6px var(--button-active);
}

.form-container .form-input:focus::-moz-placeholder {
  opacity: 0.5;
  -moz-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.form-container .form-input:focus::placeholder {
  opacity: 0.5;
  transition: opacity 0.3s ease;
}


.form-container .step-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  padding: clamp(1rem, 2vw, 1.5rem);
  box-sizing: border-box;
  border: 1px solid #ddd;
  border-radius: 15px;
  box-shadow: 0 4px 8px rgb(0 0 0 / 10%);
  background-color: #f5f5f5;
  color: #3a3a3a;
  gap: 15px;
}


/* Step Title */
.form-container .step-title {
  font-family: 'Roboto', sans-serif;
  font-size: var( --font-size-md);
  font-weight: 700;
  color: #af5998;
  margin-bottom: 10px;
  text-align: center;
}


.form-container .form-input.error,
.form-container .phone-input.error {
  border-color: #950870;
  background-color: #ffe6f2;
}

.form-container .form-input.error:focus,
.form-container .phone-input.error:focus {
  box-shadow: 0 0 6px #950870;
}
 

.form-container .form-input {
  width: 100%;
  padding: clamp(8px, 1vw, 12px);
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  border: 2px solid var(--input-border, #4b577a);
  border-radius: 5px;
  color: var(--input-color);
  background-color: var(--input-bg);
  transition: border-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .booking-form-wrapper {
    font-size: 1rem;
    line-height: 1.5;
    font-weight: 400;
  }

  .booking-form-wrapper .form-container-wrapper,
  .booking-form-wrapper .form-container .step-container,
  .booking-form-wrapper .form-container .input-wrapper {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding-left: 1rem;
    padding-right: 1rem;
    box-sizing: border-box;
  }

  .booking-form-wrapper .form-container .step-container {
    padding: 1rem 1rem 6rem 1rem; /* sticky footer space */
    max-width: 100%; /* ensures it doesn’t get capped */
  }

  .booking-form-wrapper .form-container .step-title,
  .booking-form-wrapper .selected-date,
  .booking-form-wrapper .date-box__text {
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
  }

  .booking-form-wrapper .date-box__icon {
    font-size: 1.3rem;
  }

  .booking-form-wrapper .unified-buttons-container {
    margin-top: 1rem;
    padding-bottom: 1rem;
    flex-direction: column;
    gap: 12px;
  }

  .booking-form-wrapper .form-container .form-input {
    font-size: 1rem;
    padding: 10px 12px;
  }
}

@media (max-width: 420px) {
  .booking-form-wrapper .form-container-wrapper {
    padding: 0.75rem;
  }

  .booking-form-wrapper .form-container .step-container {
    padding: 14px;
  }

  .booking-form-wrapper .form-container .step-title {
    font-size: 1rem;
    margin-bottom: 8px;
  }

  .booking-form-wrapper .form-container .form-input {
    font-size: 0.95rem;
    padding: 8px 10px;
  }

  .booking-form-wrapper .date-box__icon {
    font-size: 1.2rem;
  }
}

/* Exit Message Modal Styles */
.exit-message-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6); /* Dark semi-transparent background */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  animation: fadeIn 0.3s ease-in-out;
}

/* Modal Content */
.modal-content {
  background: white;
  width: min(90%, 400px); /* Responsive width - 90% on small screens, max 400px */
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
  animation: slideUp 0.3s ease-in-out;
}

/* Modal Title */
.modal-content h2 {
  font-size: clamp(1.2rem, 2vw, 1.6rem); /* Adjusts automatically based on screen size */
  color: #333;
  margin-bottom: 12px;
}

/* Modal Message */
.modal-content p {
  font-size: clamp(0.9rem, 1.8vw, 1.2rem); /* Scales dynamically */
  color: #555;
  margin-bottom: 20px;
  line-height: 1.5;
}

/* Button Container */
.modal-actions {
  display: flex;
  gap: 10px; /* Keeps spacing even */
  flex-wrap: wrap; /* Ensures buttons don’t overflow on smaller screens */
}

/* Buttons */
.stay-button,
.exit-button {
  flex: 1; /* Allows buttons to resize automatically */
  padding: 12px;
  border: none;
  cursor: pointer;
  font-size: clamp(0.9rem, 1.8vw, 1rem); /* Dynamic button text size */
  border-radius: 8px;
  transition: all 0.2s ease-in-out;
  min-width: 120px;
}

/* Stay (positive action) */
.stay-button {
  background-color: #ff9800;
  color: white;
  font-weight: bold;
}

.stay-button:hover {
  background-color: #e68900;
}

/* Exit (negative action) */
.exit-button {
  background-color: #e0e0e0;
  color: #333;
  font-weight: bold;
}

.exit-button:hover {
  background-color: #d6d6d6;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@charset "UTF-8";
.react-datepicker__navigation-icon::before, .react-datepicker__year-read-view--down-arrow,
.react-datepicker__month-read-view--down-arrow,
.react-datepicker__month-year-read-view--down-arrow {
  border-color: #ccc;
  border-style: solid;
  border-width: 3px 3px 0 0;
  content: "";
  display: block;
  height: 9px;
  position: absolute;
  top: 6px;
  width: 9px;
}
.react-datepicker-wrapper {
  display: inline-block;
  padding: 0;
  border: 0;
}

.react-datepicker {
  font-family: "Helvetica Neue", helvetica, arial, sans-serif;
  font-size: 0.8rem;
  background-color: #fff;
  color: #000;
  border: 1px solid #aeaeae;
  border-radius: 0.3rem;
  display: inline-block;
  position: relative;
  line-height: initial;
}

.react-datepicker--time-only .react-datepicker__time-container {
  border-left: 0;
}
.react-datepicker--time-only .react-datepicker__time,
.react-datepicker--time-only .react-datepicker__time-box {
  border-bottom-left-radius: 0.3rem;
  border-bottom-right-radius: 0.3rem;
}

.react-datepicker-popper {
  z-index: 1;
  line-height: 0;
}
.react-datepicker-popper .react-datepicker__triangle {
  stroke: #aeaeae;
}
.react-datepicker-popper[data-placement^=bottom] .react-datepicker__triangle {
  fill: #f0f0f0;
  color: #f0f0f0;
}
.react-datepicker-popper[data-placement^=top] .react-datepicker__triangle {
  fill: #fff;
  color: #fff;
}

.react-datepicker__header {
  text-align: center;
  background-color: #f0f0f0;
  border-bottom: 1px solid #aeaeae;
  border-top-left-radius: 0.3rem;
  padding: 8px 0;
  position: relative;
}
.react-datepicker__header--time {
  padding-bottom: 8px;
  padding-left: 5px;
  padding-right: 5px;
}
.react-datepicker__header--time:not(.react-datepicker__header--time--only) {
  border-top-left-radius: 0;
}
.react-datepicker__header:not(.react-datepicker__header--has-time-select) {
  border-top-right-radius: 0.3rem;
}

.react-datepicker__year-dropdown-container--select,
.react-datepicker__month-dropdown-container--select,
.react-datepicker__month-year-dropdown-container--select,
.react-datepicker__year-dropdown-container--scroll,
.react-datepicker__month-dropdown-container--scroll,
.react-datepicker__month-year-dropdown-container--scroll {
  display: inline-block;
  margin: 0 15px;
}

.react-datepicker__current-month,
.react-datepicker-time__header,
.react-datepicker-year-header {
  margin-top: 0;
  color: #000;
  font-weight: bold;
  font-size: 0.944rem;
}

h2.react-datepicker__current-month {
  padding: 0;
  margin: 0;
}

.react-datepicker-time__header {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.react-datepicker__navigation {
  align-items: center;
  background: none;
  display: flex;
  justify-content: center;
  text-align: center;
  cursor: pointer;
  position: absolute;
  top: 2px;
  padding: 0;
  border: none;
  z-index: 1;
  height: 32px;
  width: 32px;
  text-indent: -999em;
  overflow: hidden;
}
.react-datepicker__navigation--previous {
  left: 2px;
}
.react-datepicker__navigation--next {
  right: 2px;
}
.react-datepicker__navigation--next--with-time:not(.react-datepicker__navigation--next--with-today-button) {
  right: 85px;
}
.react-datepicker__navigation--years {
  position: relative;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.react-datepicker__navigation--years-previous {
  top: 4px;
}
.react-datepicker__navigation--years-upcoming {
  top: -4px;
}
.react-datepicker__navigation:hover *::before {
  border-color: rgb(165.75, 165.75, 165.75);
}

.react-datepicker__navigation-icon {
  position: relative;
  top: -1px;
  font-size: 20px;
  width: 0;
}
.react-datepicker__navigation-icon--next {
  left: -2px;
}
.react-datepicker__navigation-icon--next::before {
  transform: rotate(45deg);
  left: -7px;
}
.react-datepicker__navigation-icon--previous {
  right: -2px;
}
.react-datepicker__navigation-icon--previous::before {
  transform: rotate(225deg);
  right: -7px;
}

.react-datepicker__month-container {
  float: left;
}

.react-datepicker__year {
  margin: 0.4rem;
  text-align: center;
}
.react-datepicker__year-wrapper {
  display: flex;
  flex-wrap: wrap;
  max-width: 180px;
}
.react-datepicker__year .react-datepicker__year-text {
  display: inline-block;
  width: 4rem;
  margin: 2px;
}

.react-datepicker__month {
  margin: 0.4rem;
  text-align: center;
}
.react-datepicker__month .react-datepicker__month-text,
.react-datepicker__month .react-datepicker__quarter-text {
  display: inline-block;
  width: 4rem;
  margin: 2px;
}

.react-datepicker__input-time-container {
  clear: both;
  width: 100%;
  float: left;
  margin: 5px 0 10px 15px;
  text-align: left;
}
.react-datepicker__input-time-container .react-datepicker-time__caption {
  display: inline-block;
}
.react-datepicker__input-time-container .react-datepicker-time__input-container {
  display: inline-block;
}
.react-datepicker__input-time-container .react-datepicker-time__input-container .react-datepicker-time__input {
  display: inline-block;
  margin-left: 10px;
}
.react-datepicker__input-time-container .react-datepicker-time__input-container .react-datepicker-time__input input {
  width: auto;
}
.react-datepicker__input-time-container .react-datepicker-time__input-container .react-datepicker-time__input input[type=time]::-webkit-inner-spin-button,
.react-datepicker__input-time-container .react-datepicker-time__input-container .react-datepicker-time__input input[type=time]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.react-datepicker__input-time-container .react-datepicker-time__input-container .react-datepicker-time__input input[type=time] {
  -moz-appearance: textfield;
}
.react-datepicker__input-time-container .react-datepicker-time__input-container .react-datepicker-time__delimiter {
  margin-left: 5px;
  display: inline-block;
}

.react-datepicker__time-container {
  float: right;
  border-left: 1px solid #aeaeae;
  width: 85px;
}
.react-datepicker__time-container--with-today-button {
  display: inline;
  border: 1px solid #aeaeae;
  border-radius: 0.3rem;
  position: absolute;
  right: -87px;
  top: 0;
}
.react-datepicker__time-container .react-datepicker__time {
  position: relative;
  background: white;
  border-bottom-right-radius: 0.3rem;
}
.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box {
  width: 85px;
  overflow-x: hidden;
  margin: 0 auto;
  text-align: center;
  border-bottom-right-radius: 0.3rem;
}
.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list {
  list-style: none;
  margin: 0;
  height: calc(195px + 1.7rem / 2);
  overflow-y: scroll;
  padding-right: 0;
  padding-left: 0;
  width: 100%;
  box-sizing: content-box;
}
.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list li.react-datepicker__time-list-item {
  height: 30px;
  padding: 5px 10px;
  white-space: nowrap;
}
.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list li.react-datepicker__time-list-item:hover {
  cursor: pointer;
  background-color: #f0f0f0;
}
.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list li.react-datepicker__time-list-item--selected {
  background-color: #216ba5;
  color: white;
  font-weight: bold;
}
.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list li.react-datepicker__time-list-item--selected:hover {
  background-color: #216ba5;
}
.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list li.react-datepicker__time-list-item--disabled {
  color: #ccc;
}
.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list li.react-datepicker__time-list-item--disabled:hover {
  cursor: default;
  background-color: transparent;
}

.react-datepicker__week-number {
  color: #ccc;
  display: inline-block;
  width: 1.7rem;
  line-height: 1.7rem;
  text-align: center;
  margin: 0.166rem;
}
.react-datepicker__week-number.react-datepicker__week-number--clickable {
  cursor: pointer;
}
.react-datepicker__week-number.react-datepicker__week-number--clickable:not(.react-datepicker__week-number--selected):hover {
  border-radius: 0.3rem;
  background-color: #f0f0f0;
}
.react-datepicker__week-number--selected {
  border-radius: 0.3rem;
  background-color: #216ba5;
  color: #fff;
}
.react-datepicker__week-number--selected:hover {
  background-color: rgb(28.75, 93.2196969697, 143.75);
}

.react-datepicker__day-names {
  white-space: nowrap;
  margin-bottom: -8px;
}

.react-datepicker__week {
  white-space: nowrap;
}

.react-datepicker__day-name,
.react-datepicker__day,
.react-datepicker__time-name {
  color: #000;
  display: inline-block;
  width: 1.7rem;
  line-height: 1.7rem;
  text-align: center;
  margin: 0.166rem;
}

.react-datepicker__day,
.react-datepicker__month-text,
.react-datepicker__quarter-text,
.react-datepicker__year-text {
  cursor: pointer;
}
.react-datepicker__day:not([aria-disabled=true]):hover,
.react-datepicker__month-text:not([aria-disabled=true]):hover,
.react-datepicker__quarter-text:not([aria-disabled=true]):hover,
.react-datepicker__year-text:not([aria-disabled=true]):hover {
  border-radius: 0.3rem;
  background-color: #f0f0f0;
}
.react-datepicker__day--today,
.react-datepicker__month-text--today,
.react-datepicker__quarter-text--today,
.react-datepicker__year-text--today {
  font-weight: bold;
}
.react-datepicker__day--highlighted,
.react-datepicker__month-text--highlighted,
.react-datepicker__quarter-text--highlighted,
.react-datepicker__year-text--highlighted {
  border-radius: 0.3rem;
  background-color: #3dcc4a;
  color: #fff;
}
.react-datepicker__day--highlighted:not([aria-disabled=true]):hover,
.react-datepicker__month-text--highlighted:not([aria-disabled=true]):hover,
.react-datepicker__quarter-text--highlighted:not([aria-disabled=true]):hover,
.react-datepicker__year-text--highlighted:not([aria-disabled=true]):hover {
  background-color: rgb(49.8551020408, 189.6448979592, 62.5632653061);
}
.react-datepicker__day--highlighted-custom-1,
.react-datepicker__month-text--highlighted-custom-1,
.react-datepicker__quarter-text--highlighted-custom-1,
.react-datepicker__year-text--highlighted-custom-1 {
  color: magenta;
}
.react-datepicker__day--highlighted-custom-2,
.react-datepicker__month-text--highlighted-custom-2,
.react-datepicker__quarter-text--highlighted-custom-2,
.react-datepicker__year-text--highlighted-custom-2 {
  color: green;
}
.react-datepicker__day--holidays,
.react-datepicker__month-text--holidays,
.react-datepicker__quarter-text--holidays,
.react-datepicker__year-text--holidays {
  position: relative;
  border-radius: 0.3rem;
  background-color: #ff6803;
  color: #fff;
}
.react-datepicker__day--holidays .overlay,
.react-datepicker__month-text--holidays .overlay,
.react-datepicker__quarter-text--holidays .overlay,
.react-datepicker__year-text--holidays .overlay {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #333;
  color: #fff;
  padding: 4px;
  border-radius: 4px;
  white-space: nowrap;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s, opacity 0.3s ease-in-out;
}
.react-datepicker__day--holidays:not([aria-disabled=true]):hover,
.react-datepicker__month-text--holidays:not([aria-disabled=true]):hover,
.react-datepicker__quarter-text--holidays:not([aria-disabled=true]):hover,
.react-datepicker__year-text--holidays:not([aria-disabled=true]):hover {
  background-color: rgb(207, 82.9642857143, 0);
}
.react-datepicker__day--holidays:hover .overlay,
.react-datepicker__month-text--holidays:hover .overlay,
.react-datepicker__quarter-text--holidays:hover .overlay,
.react-datepicker__year-text--holidays:hover .overlay {
  visibility: visible;
  opacity: 1;
}
.react-datepicker__day--selected, .react-datepicker__day--in-selecting-range, .react-datepicker__day--in-range,
.react-datepicker__month-text--selected,
.react-datepicker__month-text--in-selecting-range,
.react-datepicker__month-text--in-range,
.react-datepicker__quarter-text--selected,
.react-datepicker__quarter-text--in-selecting-range,
.react-datepicker__quarter-text--in-range,
.react-datepicker__year-text--selected,
.react-datepicker__year-text--in-selecting-range,
.react-datepicker__year-text--in-range {
  border-radius: 0.3rem;
  background-color: #216ba5;
  color: #fff;
}
.react-datepicker__day--selected:not([aria-disabled=true]):hover, .react-datepicker__day--in-selecting-range:not([aria-disabled=true]):hover, .react-datepicker__day--in-range:not([aria-disabled=true]):hover,
.react-datepicker__month-text--selected:not([aria-disabled=true]):hover,
.react-datepicker__month-text--in-selecting-range:not([aria-disabled=true]):hover,
.react-datepicker__month-text--in-range:not([aria-disabled=true]):hover,
.react-datepicker__quarter-text--selected:not([aria-disabled=true]):hover,
.react-datepicker__quarter-text--in-selecting-range:not([aria-disabled=true]):hover,
.react-datepicker__quarter-text--in-range:not([aria-disabled=true]):hover,
.react-datepicker__year-text--selected:not([aria-disabled=true]):hover,
.react-datepicker__year-text--in-selecting-range:not([aria-disabled=true]):hover,
.react-datepicker__year-text--in-range:not([aria-disabled=true]):hover {
  background-color: rgb(28.75, 93.2196969697, 143.75);
}
.react-datepicker__day--keyboard-selected,
.react-datepicker__month-text--keyboard-selected,
.react-datepicker__quarter-text--keyboard-selected,
.react-datepicker__year-text--keyboard-selected {
  border-radius: 0.3rem;
  background-color: rgb(186.25, 217.0833333333, 241.25);
  color: rgb(0, 0, 0);
}
.react-datepicker__day--keyboard-selected:not([aria-disabled=true]):hover,
.react-datepicker__month-text--keyboard-selected:not([aria-disabled=true]):hover,
.react-datepicker__quarter-text--keyboard-selected:not([aria-disabled=true]):hover,
.react-datepicker__year-text--keyboard-selected:not([aria-disabled=true]):hover {
  background-color: rgb(28.75, 93.2196969697, 143.75);
}
.react-datepicker__day--in-selecting-range:not(.react-datepicker__day--in-range,
.react-datepicker__month-text--in-range,
.react-datepicker__quarter-text--in-range,
.react-datepicker__year-text--in-range),
.react-datepicker__month-text--in-selecting-range:not(.react-datepicker__day--in-range,
.react-datepicker__month-text--in-range,
.react-datepicker__quarter-text--in-range,
.react-datepicker__year-text--in-range),
.react-datepicker__quarter-text--in-selecting-range:not(.react-datepicker__day--in-range,
.react-datepicker__month-text--in-range,
.react-datepicker__quarter-text--in-range,
.react-datepicker__year-text--in-range),
.react-datepicker__year-text--in-selecting-range:not(.react-datepicker__day--in-range,
.react-datepicker__month-text--in-range,
.react-datepicker__quarter-text--in-range,
.react-datepicker__year-text--in-range) {
  background-color: rgba(33, 107, 165, 0.5);
}
.react-datepicker__month--selecting-range .react-datepicker__day--in-range:not(.react-datepicker__day--in-selecting-range,
.react-datepicker__month-text--in-selecting-range,
.react-datepicker__quarter-text--in-selecting-range,
.react-datepicker__year-text--in-selecting-range), .react-datepicker__year--selecting-range .react-datepicker__day--in-range:not(.react-datepicker__day--in-selecting-range,
.react-datepicker__month-text--in-selecting-range,
.react-datepicker__quarter-text--in-selecting-range,
.react-datepicker__year-text--in-selecting-range),
.react-datepicker__month--selecting-range .react-datepicker__month-text--in-range:not(.react-datepicker__day--in-selecting-range,
.react-datepicker__month-text--in-selecting-range,
.react-datepicker__quarter-text--in-selecting-range,
.react-datepicker__year-text--in-selecting-range),
.react-datepicker__year--selecting-range .react-datepicker__month-text--in-range:not(.react-datepicker__day--in-selecting-range,
.react-datepicker__month-text--in-selecting-range,
.react-datepicker__quarter-text--in-selecting-range,
.react-datepicker__year-text--in-selecting-range),
.react-datepicker__month--selecting-range .react-datepicker__quarter-text--in-range:not(.react-datepicker__day--in-selecting-range,
.react-datepicker__month-text--in-selecting-range,
.react-datepicker__quarter-text--in-selecting-range,
.react-datepicker__year-text--in-selecting-range),
.react-datepicker__year--selecting-range .react-datepicker__quarter-text--in-range:not(.react-datepicker__day--in-selecting-range,
.react-datepicker__month-text--in-selecting-range,
.react-datepicker__quarter-text--in-selecting-range,
.react-datepicker__year-text--in-selecting-range),
.react-datepicker__month--selecting-range .react-datepicker__year-text--in-range:not(.react-datepicker__day--in-selecting-range,
.react-datepicker__month-text--in-selecting-range,
.react-datepicker__quarter-text--in-selecting-range,
.react-datepicker__year-text--in-selecting-range),
.react-datepicker__year--selecting-range .react-datepicker__year-text--in-range:not(.react-datepicker__day--in-selecting-range,
.react-datepicker__month-text--in-selecting-range,
.react-datepicker__quarter-text--in-selecting-range,
.react-datepicker__year-text--in-selecting-range) {
  background-color: #f0f0f0;
  color: #000;
}
.react-datepicker__day--disabled,
.react-datepicker__month-text--disabled,
.react-datepicker__quarter-text--disabled,
.react-datepicker__year-text--disabled {
  cursor: default;
  color: #ccc;
}
.react-datepicker__day--disabled .overlay,
.react-datepicker__month-text--disabled .overlay,
.react-datepicker__quarter-text--disabled .overlay,
.react-datepicker__year-text--disabled .overlay {
  position: absolute;
  bottom: 70%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #333;
  color: #fff;
  padding: 4px;
  border-radius: 4px;
  white-space: nowrap;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s, opacity 0.3s ease-in-out;
}

.react-datepicker__input-container {
  position: relative;
  display: inline-block;
  width: 100%;
}
.react-datepicker__input-container .react-datepicker__calendar-icon {
  position: absolute;
  padding: 0.5rem;
  box-sizing: content-box;
}

.react-datepicker__view-calendar-icon input {
  padding: 6px 10px 5px 25px;
}

.react-datepicker__year-read-view,
.react-datepicker__month-read-view,
.react-datepicker__month-year-read-view {
  border: 1px solid transparent;
  border-radius: 0.3rem;
  position: relative;
}
.react-datepicker__year-read-view:hover,
.react-datepicker__month-read-view:hover,
.react-datepicker__month-year-read-view:hover {
  cursor: pointer;
}
.react-datepicker__year-read-view:hover .react-datepicker__year-read-view--down-arrow,
.react-datepicker__year-read-view:hover .react-datepicker__month-read-view--down-arrow,
.react-datepicker__month-read-view:hover .react-datepicker__year-read-view--down-arrow,
.react-datepicker__month-read-view:hover .react-datepicker__month-read-view--down-arrow,
.react-datepicker__month-year-read-view:hover .react-datepicker__year-read-view--down-arrow,
.react-datepicker__month-year-read-view:hover .react-datepicker__month-read-view--down-arrow {
  border-top-color: rgb(178.5, 178.5, 178.5);
}
.react-datepicker__year-read-view--down-arrow,
.react-datepicker__month-read-view--down-arrow,
.react-datepicker__month-year-read-view--down-arrow {
  transform: rotate(135deg);
  right: -16px;
  top: 0;
}

.react-datepicker__year-dropdown,
.react-datepicker__month-dropdown,
.react-datepicker__month-year-dropdown {
  background-color: #f0f0f0;
  position: absolute;
  width: 50%;
  left: 25%;
  top: 30px;
  z-index: 1;
  text-align: center;
  border-radius: 0.3rem;
  border: 1px solid #aeaeae;
}
.react-datepicker__year-dropdown:hover,
.react-datepicker__month-dropdown:hover,
.react-datepicker__month-year-dropdown:hover {
  cursor: pointer;
}
.react-datepicker__year-dropdown--scrollable,
.react-datepicker__month-dropdown--scrollable,
.react-datepicker__month-year-dropdown--scrollable {
  height: 150px;
  overflow-y: scroll;
}

.react-datepicker__year-option,
.react-datepicker__month-option,
.react-datepicker__month-year-option {
  line-height: 20px;
  width: 100%;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.react-datepicker__year-option:first-of-type,
.react-datepicker__month-option:first-of-type,
.react-datepicker__month-year-option:first-of-type {
  border-top-left-radius: 0.3rem;
  border-top-right-radius: 0.3rem;
}
.react-datepicker__year-option:last-of-type,
.react-datepicker__month-option:last-of-type,
.react-datepicker__month-year-option:last-of-type {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  border-bottom-left-radius: 0.3rem;
  border-bottom-right-radius: 0.3rem;
}
.react-datepicker__year-option:hover,
.react-datepicker__month-option:hover,
.react-datepicker__month-year-option:hover {
  background-color: #ccc;
}
.react-datepicker__year-option:hover .react-datepicker__navigation--years-upcoming,
.react-datepicker__month-option:hover .react-datepicker__navigation--years-upcoming,
.react-datepicker__month-year-option:hover .react-datepicker__navigation--years-upcoming {
  border-bottom-color: rgb(178.5, 178.5, 178.5);
}
.react-datepicker__year-option:hover .react-datepicker__navigation--years-previous,
.react-datepicker__month-option:hover .react-datepicker__navigation--years-previous,
.react-datepicker__month-year-option:hover .react-datepicker__navigation--years-previous {
  border-top-color: rgb(178.5, 178.5, 178.5);
}
.react-datepicker__year-option--selected,
.react-datepicker__month-option--selected,
.react-datepicker__month-year-option--selected {
  position: absolute;
  left: 15px;
}

.react-datepicker__close-icon {
  cursor: pointer;
  background-color: transparent;
  border: 0;
  outline: 0;
  padding: 0 6px 0 0;
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  display: table-cell;
  vertical-align: middle;
}
.react-datepicker__close-icon::after {
  cursor: pointer;
  background-color: #216ba5;
  color: #fff;
  border-radius: 50%;
  height: 16px;
  width: 16px;
  padding: 2px;
  font-size: 12px;
  line-height: 1;
  text-align: center;
  display: table-cell;
  vertical-align: middle;
  content: "×";
}
.react-datepicker__close-icon--disabled {
  cursor: default;
}
.react-datepicker__close-icon--disabled::after {
  cursor: default;
  background-color: #ccc;
}

.react-datepicker__today-button {
  background: #f0f0f0;
  border-top: 1px solid #aeaeae;
  cursor: pointer;
  text-align: center;
  font-weight: bold;
  padding: 5px 0;
  clear: left;
}

.react-datepicker__portal {
  position: fixed;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
  left: 0;
  top: 0;
  justify-content: center;
  align-items: center;
  display: flex;
  z-index: 2147483647;
}
.react-datepicker__portal .react-datepicker__day-name,
.react-datepicker__portal .react-datepicker__day,
.react-datepicker__portal .react-datepicker__time-name {
  width: 3rem;
  line-height: 3rem;
}
@media (max-width: 400px), (max-height: 550px) {
  .react-datepicker__portal .react-datepicker__day-name,
  .react-datepicker__portal .react-datepicker__day,
  .react-datepicker__portal .react-datepicker__time-name {
    width: 2rem;
    line-height: 2rem;
  }
}
.react-datepicker__portal .react-datepicker__current-month,
.react-datepicker__portal .react-datepicker-time__header {
  font-size: 1.44rem;
}

.react-datepicker__children-container {
  width: 13.8rem;
  margin: 0.4rem;
  padding-right: 0.2rem;
  padding-left: 0.2rem;
  height: auto;
}

.react-datepicker__aria-live {
  position: absolute;
  clip-path: circle(0);
  border: 0;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  width: 1px;
  white-space: nowrap;
}

.react-datepicker__calendar-icon {
  width: 1em;
  height: 1em;
  vertical-align: -0.125em;
}

:root {
  --primary-bg: linear-gradient(145deg, #1c2438, #2b3a56, #3a4a6f);
  --color-header: #2E7FB1;
  --color-text-light: #ffffff;
  --color-text-dark: #000000;
  --color-body-bg: #ffffff;
  --color-hover: #2b3a56;
  --color-selected: #44A4C6;
  --color-disabled: rgba(0, 0, 0, 0.3);
  --color-disabled-bg: rgba(0, 0, 0, 0.1);
  --color-border: #2b3a56;
  --font-family: "Georgia", serif;
  --font-size-large: clamp(1.2rem, 2vw + 1rem, 1.8rem); /* Responsive font size */
  --font-size-medium: clamp(1rem, 2vw + 0.5rem, 1.4rem); /* Responsive font size */
  --font-size-small: clamp(0.8rem, 1.5vw + 0.5rem, 1rem); /* Responsive font size */
  --transition-duration: 0.3s;
  --transform-scale: 1.05;
}
 
.react-datepicker {
  background-color: var(--color-body-bg);
  border: 2px solid var(--color-border);
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  color: var(--color-text-dark);
  font-family: var(--font-family);
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
}
.day-cell:focus {
  outline: 2px solid var(--color-selected);
  outline-offset: 2px;
}

.react-datepicker__header {
  background: var(--primary-bg); 
  color: var(--color-text-light);
  font-weight: bold;
  padding: 10px;
  font-size: var(--font-size-medium);
  text-align: center;
  border-radius: 10px 10px 0 0;
}

.react-datepicker__current-month,
.react-datepicker-year-header {
  color: var(--color-text-light);
  font-weight: bold;
  font-size: var(--font-size-large);
  font-family: var(--font-family);
}

.react-datepicker__navigation {
  top: 15px;
  line-height: 1.5em;
  border: none;
  background: transparent;
  color: var(--color-text-light);
  opacity: 0.8;
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.3rem); /* Dynamic font size */
}

.react-datepicker {
  touch-action: manipulation;
}

.custom-date-picker .react-datepicker__header {
  background: var(--primary-bg);
  color: var(--color-text-light);
  font-weight: bold;
  padding: 10px;
  font-size: var(--font-size-medium);
  text-align: center;
  border-radius: 10px 10px 0 0;
}

.react-datepicker__day,
.react-datepicker__day-name {
  width: clamp(30px, 8vw, 40px); /* Responsive width */
  height: clamp(30px, 8vw, 40px); /* Responsive height */
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  font-size: var(--font-size-small);
  transition: background-color var(--transition-duration) ease, color var(--transition-duration) ease, transform var(--transition-duration) ease;
}

.react-datepicker__day-name {
  color: var( --color-body-bg);
}

.react-datepicker__day {
  color: var( --color-border);
  background-color: var(--color-body-bg);
}

/* ✅ Ensure disabled dates are correctly styled */
.react-datepicker__day--disabled {
  color: var(--color-disabled) !important;
  background-color: var(--color-disabled-bg) !important;
  cursor: not-allowed !important;
  text-decoration: line-through;
  opacity: 0.6;
}

/* ✅ Available dates styling */
.react-datepicker__day--available {
  color: var(--color-text-dark);
  border: 2px solid var(--color-border);
  border-radius: 5px;
  font-weight: bold;
  background-color: var(--color-body-bg);
  cursor: pointer;
  transition: background-color var(--transition-duration) ease, transform var(--transition-duration) ease;
}

.react-datepicker__day--available:hover,
.react-datepicker__day--available:focus {
  background-color: var(--color-hover);
  color: var(--color-text-light);
  transform: scale(var(--transform-scale));
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.react-datepicker__day--highlighted {
  background-color: rgba(68, 164, 198, 0.2);
  border-radius: 5px;
}

/* ✅ Selected date */
.react-datepicker__day--selected {
  background-color: var(--color-selected) !important;
  color: var(--color-text-light) !important;
  border: 2px solid var(--color-border) !important;
  font-weight: bold !important;
  border-radius: 8px !important;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3) !important;
}

.react-datepicker__day--selected:hover,
.react-datepicker__day--selected:focus {
  background-color: #255a7b;
  color: var(--color-text-light);
  transform: scale(var(--transform-scale));
}

/* ✅ Loading spinner */
.spinner {
  border: 4px solid rgba(255, 255, 255, 0.2);
  border-left-color: var(--color-header);
  border-radius: 50%;
  width: 30px;
  height: 30px;
  animation: spin 1s linear infinite;
  margin: 10px auto;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
@media (max-width: 768px) {
  .calendar-wrapper {
    width: 100%;
    max-width: 100%;
    padding: 0 1rem;
    box-sizing: border-box;
  }

  .react-datepicker {
    padding: 12px;
  }

  .react-datepicker__header {
    font-size: 1rem;
    padding: 10px;
  }

  .react-datepicker__current-month,
  .react-datepicker-year-header {
    font-size: 1.2rem;
  }

  .react-datepicker__navigation {
    top: 10px;
    font-size: 1rem;
  }

  .react-datepicker__day,
  .react-datepicker__day-name {
    width: 34px;
    height: 34px;
    font-size: 0.85rem;
  }

  .spinner {
    width: 24px;
    height: 24px;
  }
}
@media (max-width: 420px) {
  .react-datepicker__day,
  .react-datepicker__day-name {
    width: 30px;
    height: 30px;
    font-size: 0.8rem;
  }

  .react-datepicker__header {
    font-size: 0.9rem;
  }
}

/* Root Variables */
:root {
  --primary-color: #ffffff;
  --button-active: #a00c70;
  --button-hover: #8a075f;
  --button-inactive: #b0b0b0;
  --button-inactive-bg: #d5d5d5;
  --button-inactive-text: #888;
  --font-size-lg: clamp(1.2rem, 1.5vw, 1.5rem);
  --font-size-md: clamp(0.9rem, 1.2vw, 1.1rem);
  --font-size-sm: clamp(0.7rem, 1vw, 0.9rem);
}

/* Wrapper */
.unified-buttons-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: min(100%, 90vw);
  max-width: 60rem;
  max-height: clamp(3rem, 8vh, 5rem);
  margin: 2vh auto;
  padding: 0 clamp(0.5rem, 2vw, 1.5rem);
  box-sizing: border-box;
  overflow: hidden;
}

/* Button Container */
.unified-buttons-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: clamp(0.5rem, 1.5vw, 1rem);
  width: 100%;
  height: 100%;
  box-sizing: border-box;
}

/* Base Button */
.unified-buttons-container button {
  flex: 1 1 clamp(8rem, 25%, 15rem);
  padding: clamp(0.6rem, 2vw, 1.2rem) clamp(1rem, 4vw, 2rem);
  font-family: 'Roboto', sans-serif;
  font-size: var(--font-size-md);
  font-weight: bold;
  text-align: center;
  color: var(--primary-color);
  border: none;
  border-radius: 999px;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #bbbbbb, #888888);
  box-shadow:
    inset 0em -0.125em 0.3em rgba(255, 255, 255, 0.6),
    inset 0em 0.125em 0.3em rgba(0, 0, 0, 0.3),
    0em 0.4em 0.8em rgba(0, 0, 0, 0.5);
}

/* Highlight Top Glare */
.unified-buttons-container button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 999px;
}

/* Back Button */
.unified-buttons-container .back-button {
  background: linear-gradient(180deg, #666, #333);
  box-shadow:
    inset 0em 0.125em 0.3em rgba(255, 255, 255, 0.2),
    0em 0.5em 1em rgba(0, 0, 0, 0.5);
}

.unified-buttons-container .back-button:hover {
  background: linear-gradient(180deg, #777, #444);
  transform: translateY(-0.125em);
  box-shadow: 0em 0.5em 1em rgba(0, 0, 0, 0.6);
}

/* Next Button Default (inactive) */
.unified-buttons-container .next-button {
  flex: 2 1 clamp(10rem, 35%, 20rem);
  background: linear-gradient(180deg, var(--button-inactive-bg), var(--button-inactive));
  color: var(--button-inactive-text);
  cursor: not-allowed;
  box-shadow:
    inset 0em 0.125em 0.375em rgba(255, 255, 255, 0.3),
    0em 0.625em 1.25em rgba(0, 0, 0, 0.6);
}

/* Active Next Button */
.unified-buttons-container .next-button.active {
  background: linear-gradient(180deg, var(--button-active), #af1562);
  color: var(--primary-color);
  cursor: pointer;
  animation: flashing 3s ease-in-out infinite;
  box-shadow:
    inset 0em -0.125em 0.3em rgba(255, 255, 255, 0.4),
    inset 0em 0.125em 0.3em rgba(0, 0, 0, 0.3),
    0em 0.625em 1.25em rgba(0, 0, 0, 0.7);
}

/* Disabled State */
.unified-buttons-container .next-button:disabled,
.unified-buttons-container .next-button:disabled:hover {
  background: linear-gradient(180deg, var(--button-inactive-bg), var(--button-inactive));
  color: var(--button-inactive-text);
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* Animation */
@keyframes flashing {
  0% {
    background: linear-gradient(180deg, var(--button-active), #e052a0);
    filter: brightness(1);
  }
  25% {
    background: linear-gradient(180deg, #a50a70, var(--button-hover));
    filter: brightness(1.05);
  }
  50% {
    background: linear-gradient(180deg, #950870, var(--button-hover));
    filter: brightness(1.1);
  }
  75% {
    background: linear-gradient(180deg, #a50a70, var(--button-hover));
    filter: brightness(1.05);
  }
  100% {
    background: linear-gradient(180deg, var(--button-active), #e052a0);
    filter: brightness(1);
  }
}

@media (max-width: 767px) {
  .unified-buttons-wrapper {
    flex-direction: column;
    padding: 0 1rem;
    gap: 12px;
    max-height: none;
  }

  .unified-buttons-container {
    flex-direction: column;
    gap: 12px;
  }

  .unified-buttons-container button,
  .unified-buttons-container .next-button,
  .unified-buttons-container .back-button {
    flex: none;
    width: 100%;
    padding: 12px 16px;
    font-size: 1rem;
  }
}


 

.selected-date {
  display: flex;
  font-family: 'Playfair Display', serif;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 1em;
  font-weight: normal;
  color: #000;  
  background: none;  
  padding: 15px;
  border: 2px solid #000;  
  border-radius: 8px;  
  margin: 20px auto 30px;  
  width: 80%;
  max-width: 800px;
  box-sizing: border-box;
  box-shadow: none; /* Remove shadow */
  transition: border-color 0.3s ease, transform 0.2s ease;
}


.selected-date.selected {
  border-color: #003300; 
}

.icon {
  font-size: 1.5em;
  color: #ffd700; /* Gold icon for a pop of color */
}

@media (max-width: 768px) {
  .selected-date {
    width: 100%;
    font-size: 0.95rem;
    padding: 12px;
    gap: 6px;
  }

  .icon {
    font-size: 1.3em;
  }
}

/* SMALL SCREEN REFINEMENT */
@media (max-width: 420px) {
  .selected-date {
    font-size: 0.85rem;
    padding: 10px;
    gap: 4px;
  }

  .icon {
    font-size: 1.2em;
  }
}
:root {
  --font-size-sm: clamp(0.9rem, 2vw, 1rem);
  --font-size-md: clamp(1rem, 2.2vw, 1.2rem);
  --font-size-lg: clamp(1rem, 2.5vw, 1.4rem);
  --font-weight-bold: 600;
  --room-bg: linear-gradient(145deg, #3c4f6e, #4d5d83, #5e6e98);
  --room-hover-bg: linear-gradient(145deg, #2c3a56, #3a4a6f, #1c2438);
  --room-selected-bg: #000000;
  --room-selected-border: #950870;
  --checkmark-color: #FFD700;
  --time-option-height: clamp(40px, 5vw, 50px);
  --time-option-padding: clamp(8px, 2vw, 12px) clamp(12px, 2.5vw, 16px);
}

.time-selection {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(6px, 2vw, 10px);
  justify-content: center;
  margin-top: clamp(15px, 3vw, 20px);
  margin-bottom: clamp(15px, 3vw, 20px);
  width: 100%;
  box-sizing: border-box;
  padding: clamp(4px, 1vw, 6px) clamp(10px, 2vw, 16px);

}

.time-selection .time-option {
  position: relative;
   -webkit-appearance: none;
      -moz-appearance: none;
           appearance: none;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  font: inherit;
  color: inherit;
  height: var(--time-option-height);
  padding: var(--time-option-padding);
  font-size: var(--font-size-md);
  font-weight: 500;
  color: #ffffff;
  background: var(--room-bg);
  border-radius: 50px; /* Oval shape */
  cursor: pointer;
  transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease, border 0.3s ease;
  box-shadow: 4px 6px 12px rgba(0, 0, 0, 0.3), inset -2px -2px 5px rgba(255, 255, 255, 0.1);
  border: 2px solid transparent;
  text-align: center;
  width: 100%; /* Full width */
  max-width: 100%; /* Ensures it doesn't exceed container */
  min-width: clamp(180px, 40%, 300px); /* Prevents it from getting too small */
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
/* Engraved Text Effect */
.time-selection .time-option span {
  color: #ffffff;
  text-shadow: 
    1px 1px 2px rgba(0, 0, 0, 0.3),   /* Light shadow to give depth */
    -1px -1px 2px rgba(0, 0, 0, 0.3),  /* Light shadow on the opposite side */
    0px 0px 5px rgba(0, 0, 0, 0.5);    /* Soft glow around the text to emphasize depth */
}

/* Hover Effect - Enhanced 3D Feel */
.time-option:hover:not(.disabled),
.time-option:focus-visible:not(.disabled) {
  background: var(--room-hover-bg);
  box-shadow: 6px 12px 20px rgba(0, 0, 0, 0.5), inset 2px 2px 8px rgba(0, 0, 0, 0.2);
  border: 2px solid var(--checkmark-color);
  outline: none;
  transform: scale(1.05) rotateX(4deg) rotateY(4deg);
}
/* Selected Effect - Pressed 3D Look */
.time-option.selected {
  background: linear-gradient(145deg, #101010, #202020);
  border: 2px solid #FFD700 !important;
  color: #ffffff;
  transform: scale(1.02);
  box-shadow: none;
  border-radius: 50px;
}
.time-option.unavailable {
  background: #d3d8e3 !important;  
  color: #333 !important;  /* ✅ Ensure darker text color */
  font-weight: bold;  
  cursor: not-allowed;  
  opacity: 1;  /* ✅ Keep full opacity to prevent text from looking faded */
  pointer-events: none;  
  box-shadow: none;
  border: 2px solid #c6ccd9 !important;  
  transition: opacity 0.3s ease;
  position: relative;
}

 
.time-option.unavailable .time-slot-text {
  color: #000 !important;  /* ✅ Set text to pure black */
  font-weight: bold;
  text-shadow: none !important; /* ✅ Remove unnecessary shadow causing foggy effect */
  position: relative;
  z-index: 3;  /* ✅ Ensure text appears above "BOOKED" stamp */
}


/* ✅ "BOOKED" STAMP - Red, Tilted */
.time-option.unavailable::before {
  content: "BOOKED";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-15deg);
  background: rgba(255, 0, 0, 0.9);
  color: white;
  font-weight: bold;
  font-size: var(--font-size-md);
  padding: 5px 15px;
  border-radius: 5px;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
  animation: bookedStamp 0.8s ease-in-out;
}
 
/* ✅ Booked Stamp Entrance Animation */
@keyframes bookedStamp {
  0% { transform: translate(-50%, -50%) rotate(-15deg) scale(0.9); opacity: 0; }
  100% { transform: translate(-50%, -50%) rotate(-15deg) scale(1); opacity: 1; }
}

.time-option.nearly-full {
  background: var(--room-hover-bg) !important;
  position: relative !important;
}

.time-option.nearly-full::before {
  content: "Almost Full!";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 165, 0, 0.9);
  color: black;
  font-weight: bold;
  font-size: var(--font-size-md);
  padding: 5px 15px;
  border-radius: 5px;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
  animation: flashAlmostFull 2s infinite alternate;
  z-index: 999 !important;
}


/* ✅ Flashing Effect Animation */
@keyframes flashAlmostFull {
  0% { opacity: 1; }
  50% { opacity: 0; }
  100% { opacity: 1; }
}


.time-option .validation-checkmark {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: clamp(10px, 4vw, 15px);
  top: 50%;
  transform: translateY(-50%);
  width: clamp(18px, 4vw, 22px);
  height: clamp(18px, 4vw, 22px);
  border-radius: 50%;
  background-color: white;
  pointer-events: none;
}

.time-option .checkmark-icon {
  color: #000;
  font-size: clamp(14px, 2.5vw, 18px); /* Fixed font-size clamp */
}

.time-option:focus-visible {
  outline: 2px solid var(--checkmark-color);
  outline-offset: 4px;
}

/* Step Container */
.step-container {
  padding: clamp(10px, 3vw, 20px);
}
@media (max-width: 768px) {
  .time-selection .time-option {
    min-width: 100%;
    font-size: 1rem;
    padding: 10px 14px;
  }

  .time-option .checkmark-icon {
    font-size: 16px;
  }

  .time-option .validation-checkmark {
    width: 18px;
    height: 18px;
    right: 10px;
  }

  .time-option.unavailable::before,
  .time-option.nearly-full::before {
    font-size: 0.9rem;
    padding: 4px 10px;
  }
}

@media (max-width: 420px) {
  .time-selection .time-option {
    font-size: 0.95rem;
    padding: 10px;
  }

  .time-option .checkmark-icon {
    font-size: 15px;
  }

  .time-option .validation-checkmark {
    right: 8px;
    width: 16px;
    height: 16px;
  }

  .time-option.unavailable::before,
  .time-option.nearly-full::before {
    font-size: 0.85rem;
    padding: 4px 8px;
  }
}

:root {
  --font-size-sm: clamp(0.9rem, 2vw, 1rem);
  --font-size-md: clamp(1rem, 2.2vw, 1.1rem);
  --font-size-lg: clamp(1.1rem, 2.5vw, 1.2rem);
  --font-weight-bold: 600;
  --product-bg: linear-gradient(145deg, #3c4f6e, #4d5d83, #5e6e98);
  --product-hover-bg: linear-gradient(145deg, #2c3a56, #3a4a6f, #1c2438);
  --selected-bg: #000000;
  --selected-border: #FFD700;
  --checkmark-color: #FFD700;
}

.product-selection {
    display: flex;
  flex-wrap: wrap;
  gap: clamp(6px, 2vw, 10px);
  justify-content: center;
  margin-top: clamp(15px, 3vw, 20px);
  margin-bottom: clamp(15px, 3vw, 20px);
  width: 100%;
  box-sizing: border-box;
  padding: clamp(4px, 1vw, 6px) clamp(10px, 2vw, 16px);
}

.product-item {
   position: relative;
   -webkit-appearance: none;
      -moz-appearance: none;
           appearance: none;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  font: inherit;
  color: inherit;
  height: var(--time-option-height);
  padding: var(--time-option-padding);
  font-size: var(--font-size-md);
  font-weight: 500;
  color: #ffffff;
  background: var(--room-bg);
  border-radius: 50px; /* Oval shape */
  cursor: pointer;
  transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease, border 0.3s ease;
  box-shadow: 4px 6px 12px rgba(0, 0, 0, 0.3), inset -2px -2px 5px rgba(255, 255, 255, 0.1);
  border: 2px solid transparent;
  text-align: center;
  width: 100%; /* Full width */
  max-width: 100%; /* Ensures it doesn't exceed container */
  min-width: clamp(180px, 40%, 300px); /* Prevents it from getting too small */
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
/* Engraved Text Effect */
.product-item .product-option span {
  color: #ffffff;
  text-shadow: 
    1px 1px 2px rgba(0, 0, 0, 0.3),   /* Light shadow to give depth */
    -1px -1px 2px rgba(0, 0, 0, 0.3),  /* Light shadow on the opposite side */
    0px 0px 5px rgba(0, 0, 0, 0.5);    /* Soft glow around the text to emphasize depth */
}

.product-item:hover,
.product-item:focus-visible {
  background: var(--room-hover-bg);
  border: 2px solid var(--checkmark-color);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transform: scale(1.03);
  outline: none;
}


.product-item.selected {
 background: linear-gradient(145deg, #101010, #202020);
  border: 2px solid #FFD700 !important;
  color: #ffffff;
  transform: scale(1.02);
  box-shadow: none;
  border-radius: 50px;
}

.step-four .validation-checkmark {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: clamp(10px, 4vw, 15px);
  top: 50%;
  transform: translateY(-50%);
  width: clamp(18px, 4vw, 22px);
  height: clamp(18px, 4vw, 22px);
  border-radius: 50%;
  background-color: white;
  pointer-events: none;
}

.step-four .checkmark-icon {
  color: #000;
  font-size: clamp(14px, 2.5vw, 18px);

}
@media (max-width: 768px) {
  .product-selection {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .product-item {
    font-size: 1rem;
    padding: 10px 20px;
    height: 50px;
    min-width: 100%;
  }

  .step-four .validation-checkmark {
    width: 18px;
    height: 18px;
    right: 12px;
  }

  .step-four .checkmark-icon {
    font-size: 16px;
  }
}

@media (max-width: 420px) {
  .product-item {
    font-size: 0.95rem;
    padding: 8px 16px;
    height: 48px;
  }

  .step-four .validation-checkmark {
    width: 16px;
    height: 16px;
    right: 10px;
  }

  .step-four .checkmark-icon {
    font-size: 14px;
  }
}

:root {
  --font-size-sm: clamp(0.9rem, 2vw, 1rem);
  --font-size-md: clamp(1rem, 2.2vw, 1.1rem);
  --font-size-lg: clamp(1.1rem, 2.5vw, 1.2rem);
  --font-weight-bold: 600;
  --room-bg: linear-gradient(145deg, #3c4f6e, #4d5d83, #5e6e98);
  --room-hover-bg: linear-gradient(145deg, #2c3a56, #3a4a6f, #1c2438);
  --room-selected-bg: #000000;
  --room-selected-border: #FFD700;
  --checkmark-color: #FFD700;
}

.room-container {
   display: flex;
  flex-wrap: wrap;
  gap: clamp(6px, 2vw, 10px);
  justify-content: center;
  margin-top: clamp(15px, 3vw, 20px);
  margin-bottom: clamp(15px, 3vw, 20px);
  width: 100%;
  box-sizing: border-box;
  padding: clamp(4px, 1vw, 6px) clamp(10px, 2vw, 16px);
}

.room-item {
 position: relative;
   -webkit-appearance: none;
      -moz-appearance: none;
           appearance: none;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  font: inherit;
  color: inherit;
  height: var(--time-option-height);
  padding: var(--time-option-padding);
  font-size: var(--font-size-md);
  font-weight: 500;
  color: #ffffff;
  background: var(--room-bg);
  border-radius: 50px; /* Oval shape */
  cursor: pointer;
  transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease, border 0.3s ease;
  box-shadow: 4px 6px 12px rgba(0, 0, 0, 0.3), inset -2px -2px 5px rgba(255, 255, 255, 0.1);
  border: 2px solid transparent;
  text-align: center;
  width: 100%; /* Full width */
  max-width: 100%; /* Ensures it doesn't exceed container */
  min-width: clamp(180px, 40%, 300px); /* Prevents it from getting too small */
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.room-item:focus-visible,
 .room-item:hover {
  background: var(--room-hover-bg);
  border: 2px solid var(--checkmark-color);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transform: scale(1.03);
  outline: none;
}
 


.room-item.selected {
 background: linear-gradient(145deg, #101010, #202020);
  border: 2px solid #FFD700 !important;
  color: #ffffff;
  transform: scale(1.02);
  box-shadow: none;
  border-radius: 50px;
}

.room-icon {
  font-size: var(--font-size-md);
  margin-right: 8px;
  color: var(--checkmark-color);
  flex-shrink: 0;
}

.step-five .validation-checkmark {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: clamp(10px, 4vw, 15px);
  top: 50%;
  transform: translateY(-50%);
  width: clamp(18px, 4vw, 22px);
  height: clamp(18px, 4vw, 22px);
  border-radius: 50%;
  background-color: white;
  pointer-events: none;
}

.step-five .checkmark-icon {
  color: #000;
  font-size: clamp(14px, 2.5vw, 18px);
}
@media only screen and (max-width: 400px) {
  .room-item {
    font-size: 1rem !important;
    padding: 10px 20px !important;
    height: 50px !important;
    min-width: 100% !important; /* Forces full width on narrow screens */
  }

  .room-icon {
    font-size: 1rem !important;
    margin-right: 6px !important;
  }

  .step-five .validation-checkmark {
    width: 18px !important;
    height: 18px !important;
    right: 12px !important;
  }

  .step-five .checkmark-icon {
    font-size: 16px !important;
  }
}

@media (max-width: 768px) {
  .room-container {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .room-item {
    font-size: 1rem;
    padding: 10px 20px;
    height: 50px;
    min-width: 100%;
  }

  .room-icon {
    font-size: 1rem;
    margin-right: 6px;
  }

  .step-five .validation-checkmark {
    width: 18px;
    height: 18px;
    right: 12px;
  }

  .step-five .checkmark-icon {
    font-size: 16px;
  }
}

@media (max-width: 420px) {
  .room-item {
    font-size: 0.95rem;
    padding: 8px 16px;
    height: 48px;
  }

  .room-icon {
    font-size: 0.95rem;
    margin-right: 5px;
  }

  .step-five .validation-checkmark {
    width: 16px;
    height: 16px;
    right: 10px;
  }

  .step-five .checkmark-icon {
    font-size: 14px;
  }
}

/* General Input Container */
.input-container {
  margin-bottom: 10px;
  width: 95%;
  text-align: left;
  max-width: 100%;
  text-transform: capitalize;
}

/* Label Styles */
.form-label {
  display: block;
  font-size: clamp(0.8rem, 1.5vw, 1rem); /* Responsive font size */
  font-weight: bold;
  color: var(--primary-bg);
  margin-bottom: 8px;
  text-align: center;
}

/* Icon Wrapper */
.icon {
  margin-right: 8px;
  color: var(--primary-bg);
}

/* Input Wrapper */
.input-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 10px;
  position: relative;
}
input:focus-visible {
  outline: 2px solid var(--checkmark-color);
  outline-offset: 2px;
}

input[type="text"]::-webkit-outer-spin-button,
input[type="text"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}


/* Input Styles */
input.main-contact-name-first-last[type="text"] {
  all: unset;
  width: 100%;
  max-width: clamp(250px, 90vw, 400px); /* Fully responsive width */
  box-sizing: border-box;
  padding: clamp(8px, 2vw, 12px); /* Responsive padding */
  background-color: var(--input-bg);
  border: 2px solid #3a4a6f;
  text-align: left;
  border-radius: 6px;
  font-family: 'Roboto', sans-serif;
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  color: var(--input-color);
  height: clamp(40px, 4vw, 45px);
  margin: 0 auto;
  transition: border-color 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}

input.main-contact-name-first-last[type="text"]:focus {
  background-color: var(--primary-bg);
  border-color: var(--button-active);
  box-shadow: 0 0 5px var(--button-active);
  outline: none;
  color: var(--input-color);
}

/* Form Group */
.form-group {
  margin-bottom: 20px;
  width: 95%;
  text-align: center;
  margin: 0 auto;
  box-sizing: border-box;
}

/* Phone Input Container */
.form-group .phone-input-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: clamp(250px, 90vw, 400px); /* Make it auto-responsive */
  margin: 0 auto;
  gap: clamp(5px, 2vw, 10px);
  box-sizing: border-box;
  margin-top: 10px;
  flex-wrap: wrap; /* Ensures proper wrapping on small screens */
}

.form-group .phone-input-container .phone-area-code,
.form-group .phone-input-container .phone-prefix,
.form-group .phone-input-container .phone-line {
  all: unset;
  box-sizing: border-box;
  padding: clamp(8px, 2vw, 10px);
  background-color: var(--input-bg);
  border: 2px solid #3a4a6f;
  border-radius: 6px;
  font-family: 'Roboto', sans-serif;
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  color: var(--input-color);
  height: clamp(40px, 4vw, 45px);
  text-align: center;
  transition: border-color 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
  flex: 1; /* Makes inputs expand evenly */
  min-width: 25%; /* Ensures they don’t shrink too much */
}

.form-group .phone-input-container .phone-line {
  min-width: 40%;
}

/* Focus Styles */
.form-group .phone-input-container .phone-area-code:focus,
.form-group .phone-input-container .phone-prefix:focus,
.form-group .phone-input-container .phone-line:focus {
  background-color: var(--primary-bg);
  border-color: var(--button-active);
  box-shadow: 0 0 5px var(--button-active);
  outline: none;
  color: var(--input-color);
}

/* Checkmark Styles */
.step-six .validation-checkmark {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: clamp(10px, 5vw, 75px); /* Responsive right positioning */
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-color: var(--input-color);
  pointer-events: none;
}

.step-six .checkmark-icon {
  color: var(--accent-color);
  font-size: clamp(12px, 1.5vw, 16px);
}

.step-six .unified-error-message {
  color: rgb(238, 120, 120);
  font-size: clamp(12px, 1.5vw, 14px);
  margin-top: 5px;
}

.step-six .unified-error-input {
  border: 2px solid red;
  background-color: #ffe5e5;
}

.step-six .phone-input-container .validation-checkmark {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: clamp(5px, 3vw, 10px);
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-color: var(--input-color);
  pointer-events: none;
}

/* Adjust phone inputs to be more flexible */
.phone-input-container {
  display: flex;
  flex-wrap: wrap;
  position: relative;
}

.phone-input-container .phone-line {
  padding-right: 30px;
}
.opt-in-checkbox a {
  color: #0056cc; /* darker blue */
  text-decoration: underline;
}

.opt-in-checkbox a:hover {
  color: #003399;
  text-decoration: underline;
}

@media (max-width: 768px) {
  input.main-contact-name-first-last[type="text"],
  .phone-input-container .phone-area-code,
  .phone-input-container .phone-prefix,
  .phone-input-container .phone-line,
  .step-seven input[type="text"],
  .step-seven .street-address {
    font-size: 1rem;
    padding: 10px 14px;
  }

  .form-label,
  .step-seven .form-label {
    font-size: 0.95rem;
    margin-bottom: 6px;
  }

  .step-six .unified-error-message,
  .step-six .checkmark-icon,
  .step-seven .checkmark-icon {
    font-size: 14px;
  }

  .step-six .validation-checkmark,
  .step-seven .validation-checkmark {
    width: 16px;
    height: 16px;
    right: 12px;
  }

  .step-seven .address-suggestions li {
    font-size: 15px;
    padding: 10px 14px;
  }

  .input-container,
  .form-group,
  .step-seven .input-container {
    margin-bottom: 8px;
  }
}

@media (max-width: 420px) {
  input.main-contact-name-first-last[type="text"],
  .phone-input-container .phone-area-code,
  .phone-input-container .phone-prefix,
  .phone-input-container .phone-line,
  .step-seven input[type="text"],
  .step-seven .street-address {
    font-size: 0.95rem;
    padding: 10px 10px;
  }

  .form-label,
  .step-seven .form-label {
    font-size: 0.85rem;
  }

  .step-six .validation-checkmark,
  .step-seven .validation-checkmark {
    width: 14px;
    height: 14px;
    right: 10px;
  }

  .step-six .checkmark-icon,
  .step-seven .checkmark-icon {
    font-size: 13px;
  }

  .step-seven .address-suggestions li {
    font-size: 14px;
    padding: 10px 12px;
  }

  .step-seven .input-container {
    margin-bottom: 6px;
  }
}

.step-seven .input-container {
  margin-bottom: 3px;
  width: 100%;
  text-align: left;
  position: relative;
}

/* Address Suggestions */
.step-seven .address-suggestions {
  list-style: none;
  margin: 0;
  padding: 0;
  max-height: clamp(150px, 25vh, 200px); /* Auto scales with screen */
  overflow-y: auto;
  background-color: var(--input-bg, #f9f9f9);
  border: 2px solid #3a4a6f;
  border-radius: 6px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  position: absolute;
  z-index: 1000;
  width: 100%;
}
.step-seven input[type="text"],
.step-seven .street-address,
.step-seven .combined-address {
  min-width: 280px; /* ensures enough width for usability */
}
input,
textarea,
button {
  -webkit-tap-highlight-color: transparent;
}

/* Dropdown Items */
.step-seven .address-suggestions li {
  padding: clamp(6px, 1vw, 10px); /* Scales based on viewport */
  font-family: 'Roboto', sans-serif;
  font-size: clamp(0.75rem, 1vw, 1rem); /* Auto-adjusts */
  color: var(--input-color, #000);
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}

/* Hover & Active State */
.step-seven .address-suggestions li:hover {
  background-color: #f0f0f0;
}
.step-seven .address-suggestions li.active {
  background-color: #0078d7;
  color: #ffffff;
}

/* Label Styles */
.step-seven .form-label {
  display: block;
  font-size: clamp(0.75rem, 1vw, 0.875rem); /* Dynamic font */
  font-weight: bold;
  color: var(--primary-bg, #333);
  margin-bottom: 0.5rem;
  text-align: center;
}

/* Icon */
.step-seven .icon {
  margin-right: 8px;
  color: var(--primary-bg, #333);
}

/* Input Styles */
.step-seven input[type="text"],
.step-seven .street-address {
  width: 100%;
  max-width: 400px;
  padding: clamp(6px, 1vw, 10px);
  background-color: var(--input-bg, #f9f9f9);
  border: 2px solid #3a4a6f;
  border-radius: 6px;
  font-family: 'Roboto', sans-serif;
  font-size: clamp(0.75rem, 1vw, 1rem);
  color: var(--input-color, #000);
  height: clamp(40px, 4vw, 45px);
  margin: 0 auto;
  transition: border-color 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}

/* Focus State */
.step-seven .street-address:focus {
  background-color: var(--primary-bg, #e0f7fa);
  border-color: var(--button-active, #00796b);
  box-shadow: 0 0 5px var(--button-active, #00796b);
  outline: none;
  color: var(--input-color, #000);
}

/* Read-Only Fields */
.step-seven input[readonly] {
  pointer-events: none;
  background-color: #e9ecef;
  color: #6c757d;
  border-color: #ced4da;
}
.step-seven .combined-address:focus {
  outline: none;
  box-shadow: none;
  background-color: #e9ecef;
  color: #6c757d;
  border-color: #ced4da;
}

/* Combined Address Box */
.step-seven .combined-address {
  width: 100%;
  max-width: 400px;
 text-align: left;
  padding: clamp(6px, 1vw, 10px);
  background-color: var(--input-bg, #f9f9f9);
  border: 2px solid #3a4a6f;
  border-radius: 6px;
  font-family: 'Roboto', sans-serif;
  font-size: clamp(0.75rem, 1vw, 1rem);
  color: var(--input-color, #000);
  height: clamp(40px, 4vw, 45px);
  margin: 0 auto;
  transition: border-color 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}

/* Validation Checkmark */
.step-seven .validation-checkmark {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: clamp(4px, 1.5vw, 50px);  

  top: 50%;
  transform: translateY(-50%);
  width: clamp(14px, 2vw, 18px);
  height: clamp(14px, 2vw, 18px);
  border-radius: 50%;
  background-color: var(--input-color, #fff);
  pointer-events: none;
}

/* Checkmark Icon */
.step-seven .checkmark-icon {
  color: var(--accent-color, #4caf50);
  font-size: clamp(12px, 1.5vw, 16px);
}
.step-seven .address-suggestions li:focus {
  background-color: #0078d7;
  color: #ffffff;
  outline: none;
}
.step-seven .address-suggestions li:focus-visible {
  outline: 2px solid var(--accent-color);
}





@media (max-width: 768px) {
  .step-seven input[type="text"],
  .step-seven .street-address,
  .step-seven .combined-address {
    font-size: 1rem;
    padding: 10px 14px;
    height: 48px;
  }

  .step-seven .form-label {
    font-size: 0.95rem;
    margin-bottom: 6px;
  }

  .step-seven .validation-checkmark {
    width: 16px;
    height: 16px;
    right: 12px;
  }

  .step-seven .checkmark-icon {
    font-size: 14px;
  }

  .step-seven .address-suggestions li {
    font-size: 15px;
    padding: 10px 14px;
    min-height: 44px;
  }
}

@media (max-width: 420px) {
  .step-seven input[type="text"],
  .step-seven .street-address,
  .step-seven .combined-address {
    font-size: 0.95rem;
    padding: 10px 10px;
    height: 45px;
  }

  .step-seven .form-label {
    font-size: 0.85rem;
  }

  .step-seven .validation-checkmark {
    width: 14px;
    height: 14px;
    right: 10px;
  }

  .step-seven .checkmark-icon {
    font-size: 13px;
  }

  .step-seven .address-suggestions li {
    font-size: 14px;
    padding: 8px 10px;
  }
}

.step-eight-container .form-input {
  padding: clamp(6px, 1vw, 10px);
  font-size: clamp(0.9rem, 2vw, 1rem);
  font-weight: bold;
  text-align: left;
  border: 2px solid #4b577a;
  border-radius: 5px;
  color: #000;
  background-color: transparent;
  transition: border-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  box-sizing: border-box;
  height: clamp(80px, 10vw, 100px);
  min-height: 90px;
  width: 100%;
  max-width: 100%;
  margin-bottom: 5px;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

 .step-eight-container .form-input:focus {
  border-color: var(--accent-color, #FFD700);
  box-shadow: 0 0 4px rgba(255, 215, 0, 0.6);
  outline: none;
}


/* Input Wrapper */
.step-eight-container .input-wrapper {
  margin-bottom: 20px;
  width: 100%;
  max-width: 100%;
  position: relative;
}

/* Input Label */
.step-eight-container .input-label {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: #4b577a;
  margin-bottom: 5px;
}

/* Character Counter */
.step-eight-container .char-counter {
  font-size: clamp(0.75rem, 1.2vw, 0.875rem);
  color: #4b577a;
  margin-top: 5px;
  text-align: right;
}

@media (max-width: 768px) {
  .step-eight-container .form-input {
    font-size: 1rem;
    height: 90px;
    padding: 10px 12px;
  }

  .step-eight-container .input-label {
    font-size: 0.95rem;
  }

  .step-eight-container .char-counter {
    font-size: 0.85rem;
  }

}

@media (max-width: 420px) {
  .step-eight-container .form-input {
    font-size: 0.95rem;
    height: 85px;
    padding: 10px;
  }

  .step-eight-container .input-label {
    font-size: 0.875rem;
  }

  .step-eight-container .char-counter {
    font-size: 0.8rem;
  }
}

.progress-container {
  width: 100%; /* Full width of its parent (e.g., step-container or form wrapper) */
  margin: clamp(0.25rem, 0.75vh, 1rem) auto clamp(1rem, 2vh, 1.5rem);
  padding: 0 clamp(0.5rem, 1.5vw, 1rem);
  position: relative;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: 'Roboto', sans-serif;
  box-sizing: border-box;
}

/* Tank base - slimmed */
.gas-tank {
  width: 100%;
  height: clamp(1.2rem, 3vw, 2rem); /* Slim height */
  background-color: #f5f5f5;
  border-radius: 999px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
}

/* Progress fill */
.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #6b9ac4, #8d62cf);
  border-radius: 999px 0 0 999px;
  position: absolute;
  left: 0;
  transition: width 0.3s ease-in-out;
}

/* Pointer - compact */
.progress-pointer {
  position: absolute;
  top: -0.25em;
  width: clamp(0.5rem, 1.5vw, 1rem);
  height: clamp(1.4rem, 4vw, 2.5rem);
  background: linear-gradient(145deg, #8d62cf, #6b9ac4);
  border-radius: 50%;
  transform: translateX(-50%);
  transition: left 0.3s ease-in-out;
  box-shadow: 0 0 0.5rem rgba(109, 129, 255, 0.8);
}

/* Dash container */
.gas-meter {
  width: 100%;
  height: clamp(0.3rem, 1vw, 0.6rem);
  position: relative;
  display: flex;
  justify-content: space-between;
  top: 50%;
  transform: translateY(-50%);
}

/* Dashes */
.gas-dash {
  position: absolute;
  width: 0.125rem;
  height: clamp(0.5rem, 1.5vh, 1.25rem);
  background-color: #e0e0e0;
  border-radius: 1px;
  transform: translateX(-50%);
  transition: background-color 0.3s ease-in-out;
}

.gas-dash.active {
  background-color: #6b9ac4;
}

/* Label */
.progress-label {
  font-size: clamp(0.75rem, 1.5vw, 1rem);
  font-weight: bold;
  color: #3a3a3a;
  margin-top: clamp(0.5rem, 1vh, 1rem);
  text-align: center;
}
@media only screen and (max-width: 400px) {
  .progress-container {
    padding: 0 0.75rem !important;
  }

  .progress-label {
    font-size: 0.9rem !important;
    margin-top: 0.75rem !important;
  }

  .gas-tank {
    height: 1.4rem !important;
  }

  .progress-pointer {
    width: 0.75rem !important;
    height: 1.8rem !important;
    box-shadow: 0 0 0.3rem rgba(109, 129, 255, 0.8);
  }

  .gas-dash {
    height: 0.8rem !important;
  }
}

@media only screen and (max-width: 375px) {
  .progress-label {
    font-size: 0.85rem !important;
  }

  .progress-pointer {
    width: 0.65rem !important;
    height: 1.6rem !important;
  }

  .gas-dash {
    height: 0.7rem !important;
  }
}

