/* Couleurs vote */
.vote-icon {
  cursor: pointer;
  transition: transform 0.2s ease, color 0.3s ease, opacity 0.3s ease;
}
.vote-icon.disabled {
  pointer-events: none;
  opacity: 0.4;
}
.vote-icon.voted-up {
  color: #28a745 !important; /* vert */
  transform: scale(1.2);
}
.vote-icon.voted-down {
  color: #dc3545 !important; /* rouge */
  transform: scale(1.2);
}
.vote-icon.not-selected {
  color: #adb5bd !important; /* gris */
}