.dayContainer .booked-day {
  background-color: #b44343 !important;
  color: #fff !important;
  opacity: 1 !important;
  cursor: not-allowed;
  position: relative;
}
.dayContainer .booked-day::after {
  content: "Booked";
  position: absolute;
  bottom: 110%;
  left: 50%;
  transform: translateX(-50%);
  background: #111;
  color: #fff;
  padding: 2px 6px;
  font-size: 0.7rem;
  border-radius: 4px;
  white-space: nowrap;
  display: none;
  z-index: 10;
}
.dayContainer .booked-day:hover::after {
  display: block;
}

.color-swatch {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.color-swatch:hover {
  transform: scale(1.15);
}
.color-swatch.active {
  border-color: #333;
}

#color-palette {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

#brightness-range {
  width: 150px;
  accent-color: #333;
}
#brightness-range:hover {
  accent-color: #555;
}

label[for=event-bg-color],
label[for=brightness-range] {
  font-weight: 600;
  color: #333;
}

.booking-container {
  padding: 2rem;
  min-height: 95vh;
  /* Stage 2 disabled/enabled state */
  /* Event Preview Container */
  /* Inputs and buttons */
}
.booking-container .booking-event-images {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.booking-container .booking-event-images img {
  max-width: 100%;
  width: 150px; /* fallback */
  height: auto;
}
.booking-container .event-schedule {
  list-style: none; /* removes bullets */
  padding-left: 0; /* removes default padding */
}
.booking-container h2, .booking-container h3 {
  color: #3f524f;
  margin-bottom: 1rem;
  font-weight: 700;
}
.booking-container #stage2 {
  opacity: 0.5;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.booking-container #stage2.active {
  opacity: 1;
  pointer-events: all;
}
.booking-container #preview-background {
  position: relative;
  width: 100%;
  min-height: 300px;
  background-color: #f5f5f5;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.booking-container #preview-background-blur {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}
.booking-container #event-preview {
  border: 2px solid #3f524f;
  border-radius: 12px;
  min-height: 300px;
  overflow: hidden;
  position: relative;
}
.booking-container #event-preview #preview-background-blur {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
  transition: filter 0.3s ease;
}
.booking-container #event-preview #preview-section {
  position: relative;
  z-index: 1;
  padding: 2rem;
  text-align: center;
  color: white;
  background-color: rgba(63, 82, 79, 0.4);
  border-radius: 8px;
  /* Image previews */
}
.booking-container #event-preview #preview-section h1 {
  font-size: 2.2rem;
  font-weight: 700;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
}
.booking-container #event-preview #preview-section p {
  font-size: 1.2rem;
  line-height: 1.5;
}
.booking-container #event-preview #preview-section #preview-images {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.booking-container #event-preview #preview-section #preview-images img {
  border-radius: 6px;
  max-width: 150px;
  height: auto;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.booking-container #event-preview #preview-section #preview-images img:hover {
  transform: scale(1.05);
}
.booking-container input, .booking-container textarea {
  border-radius: 6px;
  border: 1px solid rgb(135.1103448276, 162.8896551724, 158.5034482759);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}
.booking-container input:focus, .booking-container textarea:focus {
  border-color: #3f524f;
  box-shadow: 0 0 6px rgba(63, 82, 79, 0.4);
}
.booking-container .btn-primary {
  background-color: #3f524f;
  border: none;
  border-radius: 30px;
  font-weight: 600;
  padding: 0.5rem 1.5rem;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}
.booking-container .btn-primary:hover {
  background-color: rgb(40.8413793103, 53.1586206897, 51.2137931034);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.booking-container .btn-secondary {
  border-radius: 30px;
  padding: 0.4rem 1.2rem;
}

/*# sourceMappingURL=booking.css.map */
