
/* BACK BUTTON ICON STYLE */
.lb-prev {
  background: transparent;
  border: none;
  cursor: pointer;
  margin-top: 20px;
  margin-right: 10px;
  padding: 8px;
}

/* Circle icon */
.lb-back-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #e0e0e0;
  color: #333;
  font-size: 18px;
  font-weight: bold;
  transition: all 0.2s ease;
}

/* Hover */
.lb-back-icon:hover {
  background: #d0d0d0;
}

/* Position spacing */
.lb-step-content .lb-prev {
  display: inline-block;
}


/* ===== MAIN CONTAINER ===== */
#lb-booking-wizard {
  max-width: 1100px;
  width: 95%;
  margin: 40px auto;
  font-family: 'Arial', sans-serif;
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  box-sizing: border-box;
}

/* ===== PROGRESS BAR ===== */
.lb-progress-bar {
  display: flex;
  justify-content: space-between;
  margin-bottom: 25px;
}

.lb-progress-bar .lb-step {
  flex: 1;
  text-align: center;
  padding: 10px;
  border-bottom: 3px solid #eee;
  color: #777;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.lb-progress-bar .lb-step.active {
  border-color: #4caf50;
  color: #4caf50;
  font-weight: 600;
  background: #f6fff6;
}

/* ===== STEP TITLES ===== */
.lb-step-content h3 {
  margin-bottom: 15px;
  font-size: 20px;
}

/* ===== CALENDAR ===== */
#lb-calendar-wrapper {
  width: 100%;
  overflow-x: auto;
  text-align: center;
}

#lb-calendar {
  width: 100%;
  max-width: 750px;
  margin: 0 auto 20px;
}

/* Month navigation */
.lb-month-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.lb-month-nav button {
  background: transparent;
  border: 1px solid #4caf50;
  color: #4caf50;
  padding: 5px 10px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  transition: 0.2s;
}

.lb-month-nav button:hover {
  background: #4caf50;
  color: #fff;
}

/* Weekdays */
.lb-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 5px;
}

/* Dates grid */
.lb-dates {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.lb-dates div {
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #eee;
  cursor: pointer;
  transition: 0.2s;
}

.lb-dates div:hover {
  background: #f1fff1;
}

.lb-dates div.active {
  background: #4caf50;
  color: #fff;
  font-weight: 600;
}

.lb-dates div.disabled {
  background: #f5f5f5;
  color: #aaa;
  cursor: not-allowed;
}

/* ===== TIME SLOTS ===== */
#lb-timeslots {
  margin-top: 15px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.lb-slot {
  width: 200px;
  padding: 12px;
  text-align: center;
  border-radius: 8px;
  border: 1px solid #ddd;
  cursor: pointer;
  background: #fff;
  transition: 0.2s;
}

.lb-slot:hover {
  background: #e9f9e9;
}

.lb-slot.active {
  background: #4caf50;
  color: #fff;
  border-color: #4caf50;
}

/* BOOKED SLOT (GRAY) */
.lb-slot.disabled {
  background: #e0e0e0;
  color: #777;
  border-color: #d0d0d0;
  cursor: not-allowed;
  opacity: 1;
}

.lb-slot.disabled:hover {
  background: #e0e0e0;
}

/* ===== FORM ===== */
.lb-form-row {
  margin-bottom: 15px;
  display: flex;
  flex-direction: column;
}

.lb-form-row label {
  font-weight: 600;
  margin-bottom: 6px;
}

.lb-form-row input,
.lb-form-row textarea {
  padding: 12px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 14px;
}

.lb-form-row input:focus,
.lb-form-row textarea:focus {
  border-color: #4caf50;
  outline: none;
}

/* ===== BUTTONS ===== */
.lb-submit {
  background: #4caf50;
  color: #fff;
  padding: 12px 18px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  margin-top: 10px;
}

.lb-submit:hover {
  background: #45a049;
}

/* BACK BUTTON */
.lb-prev {
  background: #e0e0e0;
  color: #333;
  padding: 10px 16px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  margin-top: 10px;
  margin-left: 10px;
}

.lb-prev:hover {
  background: #d5d5d5;
}

/* ===== MESSAGE ===== */
#lb-message {
  margin-top: 15px;
  font-weight: 600;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {

  #lb-booking-wizard {
    padding: 20px;
  }

  .lb-slot {
    width: 100%;
  }

  #lb-calendar {
    max-width: 100%;
  }

}
