#bookingForm {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

#bookingForm .row {
  justify-content: start;
  align-items: center;
  width: 100%;
}

#bookingForm .form-control,
#bookingForm .btn {
  line-height: 1;
  padding: .5rem 1rem;
  height: 48px;
}

#bookingForm .form-control {}


.confirmation-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  /* Ombre semi-transparente */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.popup-content {
  background-color: white;
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
  max-width: 400px;
  width: 100%;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}


.popup-content button {
  margin-top: 1.5rem;
}


.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1050;
  /* Au-dessus du contenu */
}


.spinner-large {
  width: 4rem;
  height: 4rem;
  border-width: 0.5rem;
}


#paymentModal h5 {
  color: #000 !important;
}