.auc-bridge-fix {
  display: block;
  margin: 0;
  box-sizing: border-box;
  text-align: center;
  border: 0;
  box-shadow: none;
  outline: 0;
  font-size: 0.75em;
  line-height: 1.2;
  background-color: #eceee5;
  padding-top: 8px;
  border-radius: 5px;
  color: #7a7a7a;
}

.auc-bridge-fix .auc-bridge-link {
  animation: auc-text-blink 1.5s ease-in-out infinite;
}

@keyframes auc-text-blink {
  0%, 100% { color: #7a7a7a; }
  50% { color: #b3b3b3; }
}

/* 🔹 Ajustement mobile */
@media (max-width: 768px) {
  .auc-bridge-fix {
    font-size: 0.65em;
  }
}

.auc-bridge-link {
  display: inline-block;
  text-decoration: none;
  opacity: 0.9;
  color: inherit; /* Hérite de la couleur du texte parent */
}
.auc-bridge-link:hover, .auc-bridge-link:focus {
  text-decoration: underline;
  opacity: 1;
}
.auc-bridge-icon { margin-right: .35em; }

/* Styles pour hériter visuellement du bloc parent du bouton */
/* Ces styles doivent être appliqués par le JS si l'héritage est souhaité */
/* Cependant, le plan demande un rendu purement CSS, donc ces règles sont commentées */
/* pour éviter la dépendance JS pour l'héritage visuel. */
/* Le fond et les marges seront hérités naturellement si le div .auc-bridge-fix */
/* est placé à l'intérieur d'un conteneur avec ces styles. */
/* .auc-bridge-fix {
  background-color: inherit;
  background-image: inherit;
  background-repeat: inherit;
  background-position: inherit;
  background-size: inherit;
  padding-left: inherit;
  padding-right: inherit;
} */
