.booking-buttons-container {
  width: 100%;  
  text-align: center;    
  padding: 1rem;
}

.booking-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 1rem 0;  
  flex-wrap: wrap;
}

.booking-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #888;
  font-size: 0.9rem;
  margin: 1rem auto;  
  max-width: 600px;
}

.booking-divider::before,
.booking-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #e0e0e0;
  margin: 0 1rem;
}

.booking-divider span {
  font-weight: var(--font-weight-400);
  font-size: var(--font-size-20);
  color: rgba(0, 0, 0, 0.3);
  padding: 0 0.5rem;
  white-space: nowrap;
}

.booking-buttons .uk-button-secondary {
  background: rgba(190, 18, 60, 1);
  color: rgba(255, 255, 255, 1);
}

.booking-buttons .button-booking-extra {
  background: rgba(243, 244, 246, 1);
  color: rgba(31, 41, 55, 1);
}

/* -------- Responsive Breakpoints -------- */
@media (max-width: 768px) {
  .booking-buttons {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }

  .booking-divider {
    margin: 1.5rem auto;
    max-width: 90%;
  }
}