/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */

.booking-wrapper {
  display: flex;
  background: #9fb7bb;
  padding: 40px;
  border-radius: 10px;
}

/* LEFT SIDEBAR */
.booking-steps {
  width: 220px;
}

.step-item {
  background: #d9d9d9;
  padding: 10px 15px;
  margin-bottom: 10px;
  border-radius: 20px;
  cursor: pointer;
  font-size: 14px;
}

.step-item.active {
  background: #5f7f85;
  color: #fff;
}

/* RIGHT CONTENT */
.booking-content {
  flex: 1;
  background: #f4f4f4;
  padding: 30px;
  border-radius: 15px;
}

.step {
  display: none;
}

.step.active {
  display: block;
}

.next-btn, .back-btn {
  margin-top: 20px;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
}

/* Calendar Wrapper */
.litepicker {
  background: #f2f2f2 !important;
  border-radius: 20px !important;
  padding: 20px !important;
  box-shadow: none !important;
}

/* Month Title */
.litepicker .month-item-header {
  font-weight: 600;
  text-align: center;
  margin-bottom: 10px;
}

/* Days */
.litepicker .day-item {
  border-radius: 8px;
  transition: 0.2s;
}

/* Hover */
.litepicker .day-item:hover {
  background: #d9d9d9 !important;
}

/* Selected Date */
.litepicker .is-start-date {
  background: #6f8c91 !important;
  color: #fff !important;
}

/* Disabled Dates */
.litepicker .is-locked {
  color: #ccc !important;
  background: #eee !important;
  pointer-events: none;
}

/* Today */
.litepicker .is-today {
  border: 1px solid #6f8c91;
}

.time-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
}

.time-modal-content {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  width: 350px;
  margin: 100px auto;
  text-align: center;
}

.time-btn.active {
  background: #6c9ea3;
  color: #fff;
}

.package-grid {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.package-card {
  border: 2px solid #ddd;
  padding: 15px;
  border-radius: 10px;
  cursor: pointer;
  width: 200px;
  text-align: center;
  position: relative;
}

.package-card input {
  position: absolute;
  top: 10px;
  right: 10px;
}

.package-card img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 8px;
}

.package-card input:checked + .package-content {
  border: 2px solid #6c9ea3;
  background: #f0f7f8;
}

.menu-tabs {
  display: flex;
  justify-content: space-around;
  margin-bottom: 20px;
}

.tab {
  padding: 10px 20px;
  border: none;
  background: #eee;
  cursor: pointer;
  border-radius: 20px;
}

.tab.active {
  background: #6c9ea3;
  color: #fff;
}

.menu-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
}

.menu-item .icon {
  font-size: 20px;
  margin-right: 10px;
}

.menu-item .info {
  flex: 1;
}

.qty-box {
  display: flex;
  align-items: center;
}

.qty-box button {
  width: 30px;
  height: 30px;
}

.qty-box input {
  width: 50px;
  text-align: center;
}

.menu-item .icon img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 50%;
}

.error {
  color: red;
  font-size: 12px;
}

.step-item {
  position: relative;
  padding-right: 25px;
}

.step-check-icon {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  color: green;
}