.tooltip {
  pointer-events: none;
  position: absolute;
  top: -2rem;
  left: 50%;
  z-index: 20;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.6);
  padding: 2px 6px;
  font-size: 10px;
  color: #fff;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0;
  backdrop-filter: blur(4px);
  transition: opacity 0.15s;
}

/* Apparition du tooltip au hover */
.group:hover .tooltip {
  opacity: 1;
}

/* Boutons */
.nav-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 2.5rem;
  width: 3rem;
  border-radius: 9999px;
  color: rgba(255, 255, 255, 0.8);
  transition: transform 0.2s ease-out, color 0.2s;
}

.nav-btn:hover {
  transform: scale(1.05);
  color: #fff;
}

/* Glow au hover */
.nav-glow {
  pointer-events: none;
  position: absolute;
  inset: 0;
  border-radius: 9999px;
  opacity: 0;
  background: radial-gradient(
    60% 60% at 50% 50%,
    rgba(56, 189, 248, 0.18),
    transparent 70%
  );
  transition: opacity 0.2s;
}

.group:hover .nav-glow {
  opacity: 1;
}

/* correction sans tailwind */
.navbar_wrapper {
  width: 100% !important;
  justify-content: center !important;
  align-items: center;
}

.navbar_wrapper nav {
  width: 80% !important;
  max-width: 80% !important;
  justify-content: center;
}

.navbar_wrapper ul {
  gap: 0.75rem !important;
  margin: auto;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  justify-content: center !important;
}

.navbar_wrapper li { margin: auto; }

.navbar_wrapper svg {
  width: 20px !important;
  height: 20px !important;
}

.navbar_wrapper .h-10.w-12,
.navbar_wrapper .h-11.w-12,
.navbar_wrapper .w-11,
.navbar_wrapper .w-10 {
  width: 40px !important;
  height: 40px !important;
}

.fixed.bottom-6 {
  width: 100% !important;
  left: 0 !important;
  right: 0 !important;
  justify-content: center !important;
  align-items: center;
}

/* Pseudo-classes pour le bouton de recherche */
.group:hover button[aria-label="Search"] {
  transform: scale(1.05);
  color: #fff;
}

.group:hover .search-ring {
  opacity: 1;
}

.group:hover span[aria-hidden="true"] {
  opacity: 1;
}