/* Frontend Booking Form Styles */
.ebp-booking-form {
    max-width: 800px;
    margin: 0 auto;
}
.ebp_inline_selection {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}
.inline-field {
    flex: 1;
    min-width: 200px;
}
.error-message {
    color: red;
    font-size: 12px;
    display: block;
}
.ebp_submit_button {
    margin-top: 20px;
}
.ebp_summary {
    background: #f7f7f7;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
}
/* Product Selection Styling */
.ebp_section_products {
  margin: 20px 0;
  padding: 15px;
  border: 1px solid #e0e0e0;
  background-color: #fafafa;
  border-radius: 4px;
}

.ebp_section_products label {
  font-size: 18px;
  font-weight: bold;
  display: block;
  margin-bottom: 10px;
}

#ebp_products_container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.ebp_product_item {
  flex: 1 1 calc(50% - 20px);
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 10px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  transition: transform 0.2s, box-shadow 0.2s;
}

.ebp_product_item:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.ebp_product_name {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin-bottom: 5px;
}

.ebp_product_price {
  font-size: 16px;
  color: #666;
  margin-bottom: 10px;
}

.ebp_product_select {
  text-align: right;
}

.ebp_product_select input[type="radio"] {
  transform: scale(1.2);
  cursor: pointer;
}