.blurred {
    filter: blur(5px);
    pointer-events: none; /* Empêche les interactions avec la div floutée */
  }

/* Style pour le bouton de suppression des écuries */
.ecurie-item {
  cursor: pointer;
}

.ecurie-info {
  cursor: pointer;
  flex-grow: 1;
  padding-right: 10px;
}

.remove-ecurie {
  font-weight: bold;
  padding: 0 6px;
  margin-top: 2px;
  height: 26px;
  line-height: 1;
}

.remove-ecurie:hover {
  background-color: #dc3545;
  color: white;
}

.alert-email-success, .alert-email-error {
  position: relative;
  padding-right: 30px; /* Espace pour le bouton de fermeture */
}
.fade-out {
  opacity: 0;
  transition: opacity 0.5s ease;
}
.btn-close {
  position: absolute;
  top: 5px;
  right: 5px;
  cursor: pointer;
  background: transparent;
  border: none;
  padding: 5px;
}

/* CSS pour styliser l'indicateur de progression - à ajouter dans votre fichier CSS ou dans une balise style -->
*/
.progress-container {
  margin-top: 1.5rem;
  width: 100%;
}

.progress-tracker {
  position: relative;
}

.progress-bar-container {
  position: absolute;
  top: 24px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #e9ecef;
  z-index: 1;
}

.progress-bar {
  height: 100%;
  background-color: #0d6efd;
  width: 0%;
  transition: width 0.3s ease;
}

.progress-steps {
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}

.progress-step {
  text-align: center;
  flex: 1;
  max-width: 20%;
  transition: all 0.3s ease;
  opacity: 0.7;
}

.progress-step.active {
  opacity: 1;
}

.progress-step.completed .step-indicator {
  background-color: #0d6efd;
  color: white;
}

.step-indicator {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: white;
  border: 2px solid #0d6efd;
  color: #0d6efd;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  font-weight: bold;
  transition: all 0.3s ease;
}

.progress-step.active .step-indicator {
  transform: scale(1.2);
  background-color: #0d6efd;
  color: white;
  box-shadow: 0 0 0 4px rgba(13, 110, 253, 0.2);
}

.step-label {
  margin-top: 8px;
  font-size: 0.8rem;
  font-weight: 500;
}

/* Styles responsifs pour mobile */
@media (max-width: 768px) {
  .step-label {
    font-size: 0.7rem;
  }
  
  .step-indicator {
    width: 28px;
    height: 28px;
  }
  
  .progress-bar-container {
    top: 22px;
  }
}

@media (max-width: 576px) {
  .step-label {
    display: none;
  }
  
  .progress-bar-container {
    top: 14px;
  }
}

/* rende invisible libellé onglets saisie ecurie */
.empty-tab {
  min-width: 30px;
  height: 30px;
  padding: 0.5rem;
}
