/* Booking Page Styling */
.booking-container {
  max-width: 700px;
  margin: 50px auto;
  padding: 30px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.booking-header {
  text-align: center;
  margin-bottom: 30px;
}

.booking-header h2 {
  font-size: 24px;
  color: #333;
  margin-bottom: 15px;
}

.product-thumbnail img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

.booking-form .form-group {
  margin-bottom: 20px;
}

.booking-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #444;
}

.input-with-icon {
  position: relative;
}

.booking-date-input {
  width: 100%;
  padding: 12px 16px;
  font-size: 16px;
  border: 1px solid #ddd;
  border-radius: 10px;
  background-color: #f9f9f9;
  transition: border-color 0.3s ease;
}

.booking-date-input:focus {
  border-color: #007cba;
  background-color: #fff;
  outline: none;
}

.booking-summary {
  margin-top: 30px;
  background-color: #f1f5f9;
  padding: 20px;
  border-radius: 10px;
  max-height: 400px;
  overflow: auto;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  font-size: 16px;
  color: #333;
}

.summary-item.total {
  font-weight: bold;
  font-size: 18px;
  border-top: 1px solid #ddd;
  padding-top: 12px;
}

.booking-submit {
  display: block;
  width: 100%;
  padding: 14px;
  background-color: #007cba;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 20px;
  transition: background-color 0.3s ease;
}

.booking-submit:hover {
  background-color: #005fa3;
}

.button-loading {
  display: inline-block;
  font-size: 14px;
}

@media (max-width: 500px) {
  .booking-container {
    padding: 20px;
  }

  .summary-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .summary-item span:last-child {
    font-weight: bold;
    margin-top: 5px;
  }
}

/* Beautiful Flatpickr Input with Font Awesome Icon */
