@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

body {
  font-family: 'Inter', Arial, Helvetica, sans-serif;
  margin: 0;
  padding: 0;
}

#book-btn:disabled {
    background-color: #ffffff;
    color: #9ca3af;
    border: 1px solid #e5e7eb;
    opacity: 0.6;
    cursor: not-allowed;
    pointer-events: none;
}
#book-btn {
  cursor: pointer;
}
.days-section {
    display: none;
}
.days-section.visible {
    display: grid;
}

.booking-card {
  background-color: white;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  align-items: center;
}

.summary-label {
  font-size: 15px;
  color: #555;
}

.summary-value {
  font-size: 15px;
  font-weight: 500;
}

.divider {
  border-top: 1px solid #eee;
  margin: 15px 0;
}

.section-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #333;
}

.bag-row {
  /* display: flex;
  justify-content: space-between;
  align-items: center; */
}

.bag-counter {
  display: flex;
  align-items: center;
}

.counter-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid white;
  background: #51a2ff;
  color: white;
  font-size: 30px;
  font-weight: bold;
  text-align: center;

  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.counter-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  border-color: #ccc;
  color: #ccc;
}

.counter-value {
  margin: 0 12px;
  font-size: 15px;
  min-width: 20px;
  text-align: center;
}

.checkbox-group {
  margin: 20px 0;
}

.checkbox-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}

.checkbox-item input {
  margin-right: 12px;
  margin-top: 3px;
}

.checkbox-label {
  font-size: 15px;
  flex-grow: 1;
}

.price-tag {
  font-size: 15px;
  color: #d32f2f;
  font-weight: 600;
  white-space: nowrap;
}

.subtext {
  font-size: 13px;
  color: #777;
  margin-top: 3px;
  margin-left: 25px;
}

.total-section {
  background-color: white;
  border-radius: 10px;
  padding: 20px;
  margin: 20px 0;
  text-align: center;
}

.total-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #333;
}

.total-amount {
  font-size: 28px;
  font-weight: 700;
  margin: 10px 0;
  color: #333;
}

.btn-book {
  background-color: #d32f2f;
  color: white;
  border: none;
  padding: 14px;
  font-size: 16px;
  border-radius: 6px;
  cursor: pointer;
  width: 100%;
  font-weight: 600;
  transition: background-color 0.2s;
}

.btn-book:hover {
  background-color: #b71c1c;
}

.info-text {
  font-size: 13px;
  color: #777;
  margin-top: 10px;
}

.date-time-selector {
  display: none;
  background-color: white;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 15px;
}

.form-label {
  display: block;
  font-size: 14px;
  margin-bottom: 6px;
  color: #555;
}

select,
input[type="date"],
input[type="time"] {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 15px;
}
