/* Container principal du widget */
.custom-booking-widget {
  max-width: 400px;
  margin: 0 auto;
  font-family: Arial, sans-serif;
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  padding: 4rem;
}

/* Onglets en haut */
.booking-tabs {
  display: flex;
  border-bottom: 1px solid #ccc;
  margin-bottom: 1rem;
}

.booking-tab {
  flex: 1;
  background-color: transparent;
  text-align: center;
  padding: 0.5rem 0;
  border: none;
  cursor: pointer;
  font-weight: bold;
  color: #000;
}

.booking-tab:hover {
  background-color: #000;
  color: #fff;
}

.booking-tab.active {
  background: #000;
  border-bottom: 2px solid #000;
  color: #fff;
}

/* Contenu des onglets (caché par défaut) */
.booking-tab-content {
  display: none;
}

.booking-tab-content.active {
  display: block;
}

/* Formulaire */
.booking-form {
  display: flex;
  flex-direction: column;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.3rem;
  font-size: 0.9rem;
  color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.5rem;
  font-size: 0.9rem;
  border: 1px solid #ccc;
  border-radius: 4px;
}

/* Deux colonnes (Date & Heure) ou (Téléphone & Email) */
.form-two-cols {
  display: flex;
  flex-wrap: wrap; /* Permet le retour à la ligne si écran trop étroit */
  gap: 1rem;       /* Espace horizontal entre les colonnes */
}

/* Chaque .form-group au sein de .form-two-cols prend toute la largeur dispo */
.form-two-cols .form-group {
  flex: 1;
}

/* Texte informatif */
.info-texte {
  font-size: 0.8rem;
  color: #555;
  margin-bottom: 1rem;
}

/* Bouton envoyer */
.booking-submit {
  background: #000;
  color: #fff;
  font-size: 1rem;
  padding: 0.6rem 1rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
}

.booking-submit:hover {
  background: #333;
}