/* Style de base du bouton */
.blinking-button {
    color: white;
    border: none;
    padding: 10px 15px;
    font-size: 20px;
    cursor: pointer;
    border-radius: 100%;
    outline: none;
    animation: blink 1s infinite; /* Application de l'animation de clignotement */
  }
  
  /* Définition de l'animation de clignotement */
  @keyframes blink {
    0%, 100% {
      opacity: 1; /* Visible */
    }
    50% {
      opacity: 0; /* Invisible */
    }
  }
  
  /* Optionnel : ajouter une transition pour un effet plus doux */
  .blinking-button {
    transition: opacity 0.5s;
  }