/* Bouton « Comparer ce cheval » dans le drawer profil */

.compare-from-profile {
  width: 100%;
  border: 0;
  border-radius: 10px;
  padding: 13px;
  background: var(--lime);
  color: #102014;
  font-weight: 900;
  cursor: pointer;
  margin-top: 12px;
  transition: box-shadow .2s, transform .2s, filter .2s;
}

.compare-from-profile:hover { box-shadow: var(--glow-lime); transform: translateY(-1px); filter: brightness(1.05); }
.compare-from-profile:active { transform: none; }
