    /* Style pour la div de chargement */
    .loading-overlay {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.7); /* Fond flou */
      backdrop-filter: blur(5px); /* Effet de flou sur le fond */
      z-index: 9999;
    }

    .loading-content {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      background-color: transparent;
      text-align: center;
    }

    /* Style pour l'image de rotation */
    .loading-image {
      animation: spin 1s infinite ease-in-out; /* Animation de rotation */
    }

    @keyframes spin {
      0% { transform: rotate(0deg) scale (1); }
      50% { transform: rotate(180deg) scale(1.2); }
      100% { transform: rotate(360deg) scale(1); }
    }