
.loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(255,255,255,0.95);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
  }

  .loader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .logo-loader {
    width: 350px;
    margin-bottom: 10px;
    animation: pulse 1.5s ease-in-out infinite;
  }


  @keyframes pulse {
    0%, 100% {
      transform: scale(1);
      opacity: 0.7;
    }
    50% {
      transform: scale(1.1);
      opacity: 1;
    }
  }

  .fancy-spinner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 3px;
  }

  .fancy-spinner .circle {
    width: 40px;
    height: 40px;
    background-color: #126A80; /* Couleur bleue stylée */
    border-radius: 50%;
    animation: bounce 0.6s infinite alternate;
  }

  .fancy-spinner .circle:nth-child(2) {
    animation-delay: 0.2s;
  }

  .fancy-spinner .circle:nth-child(3) {
    animation-delay: 0.4s;
  }

  @keyframes bounce {
    from {
      transform: translateY(0);
      opacity: 0.6;
    }
    to {
      transform: translateY(-12px);
      opacity: 1;
    }
  }

  .nav-link.current {
      font-weight: bold;
      color: #126A80 !important;
  }

  .nav-item:hover {
      font-weight: bold;
      color: #126A80 !important;
       /* ou autre effet visuel */
  }

