
.bulle-statique-container {
  position: fixed;
  bottom: 50px;
  left: 20px;
  display: flex;
  flex-direction: column;
  z-index: 9999;
}

.bulle-statique {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #0073aa;
  color: white;
  text-decoration: none;
  padding: 10px;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  overflow: visible;
  transition: background-color 0.3s ease;
  white-space: nowrap;
  margin-bottom: 10px;
  position: relative;
}

.bulle-statique:last-child {
  margin-bottom: 0;
}

.bulle-statique:hover {
  width: auto;
  border-radius: 50px;
  padding: 10px 20px;
  background-color: #005f8d;
}

.bulle-statique:not(:hover) .icon {
  margin-right: 0;
}

.bulle-statique .icon {
  font-size: 18px;
  margin-right: 0;
  z-index: 2;
}

.bulle-statique .label {
  opacity: 0;
  pointer-events: none;
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%) translateX(10px);
  background: #005f8d;
  color: #fff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 14px;
  white-space: nowrap;
  transition: opacity 0.3s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}

.bulle-statique:hover .label {
  opacity: 1;
  pointer-events: auto;
}

/* Responsiveness */
.visible-desktop {
  display: none;
}

.visible-mobile {
  display: none;
}

/* Position dynamique du conteneur */
.position-top-left {
  top: 150px;
  left: 20px;
  bottom: auto;
  right: auto;
}
.position-top-right {
  top: 150px;
  right: 20px;
  bottom: auto;
  left: auto;
}
.position-bottom-left {
  bottom: 50px;
  left: 20px;
  top: auto;
  right: auto;
}
.position-bottom-right {
  bottom: 50px;
  right: 20px;
  top: auto;
  left: auto;
}

/* Position du label à gauche */
.label-left .label {
  left: auto;
  right: 100%;
  top: 50%;
  transform: translateY(-50%) translateX(-10px);
}
.label-left .icon {
  margin-left: 0;
  margin-right: 0;
}

/* Position du label à droite (défaut) */
.label-right .label {
  left: 100%;
  right: auto;
  top: 50%;
  transform: translateY(-50%) translateX(10px);
}

@media (min-width: 768px) {
  .visible-desktop {
    display: flex !important;
  }
}

@media (max-width: 767px) {
  .visible-mobile {
    display: flex !important;
  }
		.bulle-statique {
	  width: 30px;
	  height: 30px;
}
	.position-top-right {
  top: 160px;

}
}