/* Crée par Rojo Ambinina - https://rehetra.blogspot.com */

#africa {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: auto;
}

path, circle {
  fill: #1D2650 !important; /* Bleu foncé par défaut */
  stroke: #FFFFFF !important; /* Délimitation en blanc */
  stroke-width: 1px;
}

path:hover, circle:hover {
  fill: #A9A9A9 !important; /* Gris lors du survol */
  stroke: #1D2650 !important;
  stroke-width: 2px;
  stroke-linejoin: round;
  cursor: pointer;
}

#infoBubble {
  display: none;
  position: absolute;
  background-color: #ffffff;
  border: 2px solid #BF0A30;
  border-radius: 5px;
  padding: 5px;
  font-family: Arial, sans-serif;
  font-size: 14px;
  color: #000000;
  pointer-events: none;
  white-space: nowrap;
  z-index: 1000;
}

#info-box {
    position: absolute;
    display: none;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 14px;
    pointer-events: none;
}

/* Crée par Rojo Ambinina - https://rehetra.blogspot.com */