.btn-mappa-analizza {
  width: 110px;         /* Ridotto un po' per equilibrio visivo */
  height: 110px;
  border-radius: 50%;
  background: #facc15;
  color: black;
  font-weight: 900;
  font-size: 24px;
  border: 3px solid black;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;

  /* ATTENZIONE: Questa riga richiama il nome qui sotto */
  animation: lampeggio-alert 1.5s infinite; 
}

/* QUESTA È LA PARTE MANCANTE FONDAMENTALE */
@keyframes lampeggio-alert {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(250, 204, 21, 0.7);
  }
  50% {
    transform: scale(1.1); /* Si ingrandisce leggermente */
    background-color: #ffe066; /* Diventa più chiaro */
    box-shadow: 0 0 20px 10px rgba(250, 204, 21, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(250, 204, 21, 0);
  }
}