.zoom-hover {
  transition: transform 0.3s ease;
  display: inline-block; /* utile pour les balises inline comme <img> */
}

.zoom-hover:hover {
  transform: scale(1.5); /* Grossissement à 120% */
}

.tooltip-box {
  position: relative;
  display: inline-block;
  border-bottom: 1px dotted #343454;
  color: #8895a6;
  cursor: help;
  font-style: normal;
  font-family: Arial, sans-serif;
}

.tooltip-box span {
  display: none;
  position: absolute;
  top: 1.5em;
  left: 0;
  background-color: #fff;
  color: #000;
  border: 1px solid #333355;
  border-left: 5px solid #333355;
  padding: 6px 10px;
  border-radius: 4px;
  box-shadow: 1px 1px 13px rgba(0, 0, 0, 0.3);
  font-size: 0.9em;
  font-style: italic;
  font-family: Arial, sans-serif;
  text-align: justify;
  z-index: 1000;
  white-space: normal;
  min-width: 150px;
  max-width: 400px;
}

.tooltip-box:hover span {
  display: block;
}