/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */
/* Container Grid */
.slot-grid {
    display: flex;
    flex-direction: column;
    width: 100%;
    border: 1px solid #ccc;
    margin-top: 1.5rem;
    border-radius: 4px;
    overflow: hidden;
    font-family: Arial, sans-serif;
    font-size: 12px;
}

/* Each Row */
.slot-row {
    display: flex;
    border-bottom: 1px solid #eee;
}

/* Header Row */
.slot-header {
    background-color: #f7f7f7;
    font-weight: bold;
}

/* Each Cell */
.slot-cell {
    flex: 1;
    padding: 10px;
    text-align: center;
    border-right: 1px solid #eee;
    box-sizing: border-box;
}

/* Last cell in each row: no border */
.slot-cell:last-child {
    border-right: none;
}

/* First column for Time labels */
.time-label {
    background-color: #f0f0f0;
    font-weight: bold;
    min-width: 120px;
}

/* Radio Button Styling*/

form.cart {
    display: flex;
    flex-direction: column;
}

.single-product .input-text.qty {
  display: none !important;
}

.woocommerce-cart .input-text.qty{
    pointer-events:none;
}

.sb-slider { width: 100%; }
.sb-slider-value { font-weight: bold; margin-left: .5em; }

.adult_child_field{
    display: display;
}

/* Meeting Point Dropdown */
#meeting-location {
  width: 100%;
  max-width: 100%;
  padding: 10px 12px;
  font-size: 1rem;
  border-radius: 6px;
  border: 1px solid #ccc;
  margin-bottom: 25px;
  background-color: #fff;
  transition: border-color 0.3s ease;
}

#meeting-location:focus {
  border-color: #2b7a78;
  outline: none;
}

/* Section Titles */
#pickup-locations strong,
#dropoff-locations strong {
  display: block;
  font-size: 1.05rem;
  margin-bottom: 10px;
  color: #222;
  border-left: 3px solid #2b7a78;
  padding-left: 10px;
  margin-top: 20px;
}

/* Radio Button Groups */
#pickup-locations label,
#dropoff-locations label {
  display: block;
  background-color: #f6f6f6;
  border: 1px solid #ddd;
  padding: 10px 12px;
  margin-bottom: 8px;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.2s, border-color 0.2s;
}

#pickup-locations label:hover,
#dropoff-locations label:hover {
  background-color: #e8f4f2;
  border-color: #2b7a78;
}

#pickup-locations input[type="radio"],
#dropoff-locations input[type="radio"] {
  margin-right: 10px;
  transform: scale(1.1);
}

.pickup-dropoff-address{
  display: none;
}

.slots-error{
  margin-top: 1.5rem;
}

body.activitar-product .single_add_to_cart_button {
  display: none;
}

.wc-destination-badges {
  display: flex; flex-wrap: wrap; gap: 0px;
}
.wc-destination-badge {
  display: inline-block;
  padding: 3px 8px;
  font-size: 12px;
  line-height: 1.2;
  border: 1px solid rgba(0,0,0,.08);
  background: rgba(0,0,0,.04);
  text-decoration: none;
}
.wc-destination-badge:hover {
  border-color: rgba(0,0,0,.2);
}
