/* mvp-vote.css — page-specific styles for /mvp-vote */

/* ─── Participant Option Row ─── */
.mvp-option {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 16px;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  cursor: pointer;
  text-align: left;
  transition: var(--transition-fast);
}

.mvp-option:hover {
  background: rgba(255, 255, 255, 0.03);
}

/* ─── Selection Indicator (radio-style circle) ─── */
.selection-indicator {
  width: 24px;
  height: 24px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  flex-shrink: 0;
  transition: var(--transition-fast);
}

/* ─── Vote Count Badge ─── */
.vote-badge {
  display: none;
  min-width: 24px;
  height: 24px;
  padding: 0 6px;
  background: var(--lime-primary);
  color: var(--navy-dark);
  border-radius: 12px;
  font-size: 13px;
  font-weight: 700;
  line-height: 24px;
  text-align: center;
}
