/* ── Layout joueurs ─────────────────────────────────── */
#spPlayersList {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}

.sp-score {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
}

.sp-target-label {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.45);
}

.sp-best-break {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 6px;
}

/* ── Zone break ─────────────────────────────────────── */
.action-zone {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 16px;
  margin-bottom: 16px;
  text-align: center;
}

.action-title {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 10px;
}

.sp-break-selector {
  gap: 24px;
  justify-content: center;
}

.sp-break-value {
  font-size: 48px;
  font-weight: 800;
  color: #fff;
  min-width: 64px;
  text-align: center;
}

.btn-large {
  width: 52px;
  height: 52px;
  font-size: 24px;
}

.action-buttons {
  display: flex;
  gap: 10px;
  justify-content: center;
}

/* ── Setup step 2 : liste noms ──────────────────────── */
.sp-name-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.sp-name-row input {
  flex: 1;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  padding: 10px 12px;
  color: #fff;
  font-size: 16px;
}

.sp-name-row input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

/* ── Setup step 3 : cibles individuelles ────────────── */
.sp-target-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.sp-target-name {
  flex: 1;
  font-size: 15px;
  color: #fff;
}

/* ── Classement victoire ────────────────────────────── */
.sp-win-ranking {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.sp-ranking-row {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
}

.sp-ranking-winner {
  background: rgba(255, 200, 50, 0.12);
  border: 1px solid rgba(255, 200, 50, 0.3);
  color: #fff;
}

.sp-rank       { font-weight: 700; min-width: 18px; }
.sp-rank-emoji { font-size: 18px; }
/* .sp-rank-name  { flex: 1; } */
.sp-rank-score { font-weight: 700; }
.sp-rank-break { font-size: 12px; color: rgba(255,255,255,0.45); margin-left: 6px; }
