/* MODIFICATION HORODATÉE : [2026-05-13] */

/* RÉSUMÉ : Mise en valeur du titre de l'accordéon des pièces jointes (Gras, grand, animation de respiration) */

#itbut {
  font-weight: 800 !important;
  font-size: 1.15rem !important;
  animation: respiration-douce 2.5s infinite ease-in-out;
}

/* 3. Définition de l'animation (clignotement doux) */

@keyframes respiration-douce {
  0% {
    color: #212529;
    transform: scale(1);
  }
  50% {
    color: rgb(110, 168, 254);
    transform: scale(1.01);
    text-shadow: 0 0 4px rgba(110, 168, 254, 0.2);
  }
  100% {
    color: #212529;
    transform: scale(1);
  }
}

