.player-list {
  display: grid;
  gap: 8px;
  margin-top: 20px;
}

.player-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 14px;
  padding: 13px;
  border: 1px solid var(--line);
  background: #090d0b;
}

.player-identity {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--text);
  text-align: left;
}
.player-identity:hover { transform: none; filter: none; color: var(--lime); }

.player-avatar {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  background: #27331f;
  color: var(--lime);
  font-weight: 900;
}

.player-identity strong,
.player-identity small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.player-identity small,
.player-owner,
.empty-players {
  color: var(--muted);
  font-size: 12px;
}

.player-owner {
  padding: 7px 9px;
  border: 1px solid var(--line);
}

.player-actions {
  display: flex;
  gap: 7px;
}

.player-actions button {
  padding: 8px 11px;
  font-size: 12px;
}

.empty-players {
  margin: 0;
  padding: 28px;
  text-align: center;
  border: 1px dashed var(--line);
}

.manual-action {
  margin-top: 15px;
  color: var(--muted);
  font-size: 12px;
}

.manual-action summary {
  cursor: pointer;
  user-select: none;
}

@media (max-width: 650px) {
  .player-row { grid-template-columns: 1fr; }
  .player-owner { justify-self: start; }
  .player-actions { width: 100%; }
  .player-actions button { flex: 1; }
}
