/* Styles pour le conteneur de chargement */
.loading-container {
  position: absolute;
  z-index: 9;
  width: 400px;
  height: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-family: Roboto, sans-serif;
  font-size: 24px;
  padding: 20px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Styles pour l'image avec animation de rotation */
.loading-image {
  width: 120px; /* Ajustez la taille selon vos besoins */
  height: auto; /* Conserver les proportions de l'image */
  margin-bottom: 20px;
  animation: spin 2s linear infinite; /* Applique l'animation de rotation */
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Styles pour le texte de chargement */
.loading-text {
  margin-top: 70px; /* Décalage vers le bas de 50px + marge de 20px */
  color: #004F9E; /* Couleur du texte */
}
