/* ========== UTILISATEURS ========== */
.user-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0;
}

.user-container {
  display: flex;
  align-items: center;
  gap: 5px;
}

.delete-btn {
  background-color: #ff9eb5;
  color: white;
  font-size: 12px;

  /* Garder l'icône petite */
  padding: 0;

  /* Retirer le padding pour un contrôle précis avec min-width/height */
  border-radius: 50%;
  margin-left: 5px;
  box-shadow: 0 2px 4px rgb(0 0 0 / 0.1);
  transition: all 0.3s;

  /* Tâche 1.5: Augmenter la zone tactile */
  inline-size: var(--touch-target, 44px);
  block-size: var(--touch-target, 44px);
  min-width: var(--touch-target, 44px);
  min-height: var(--touch-target, 44px);
  display: inline-flex;

  /* Pour centrer l'icône */
  align-items: center;
  justify-content: center;
  line-height: 1;

  /* Assurer centrage vertical */
}

.delete-btn:hover {
  background-color: #ff85a2;
  transform: scale(1.1);
}

.score-list {
  list-style: none;
  padding: 0;
}
