/* Leaderboard avatars - separate file to avoid any main.css contamination */

.lb-name-cell {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.lb-avatar {
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 50%;
  object-fit: cover;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
  display: block;
}

.operator-identity {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.operator-identity .operator-name {
  margin-bottom: 0;
  flex: 1;
  min-width: 0;
  font-size: 1.05rem;
}

.operator-avatar {
  width: 40px !important;
  height: 40px !important;
  min-width: 40px;
  min-height: 40px;
  border-radius: 50% !important;
  object-fit: cover;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
  display: block !important;
}

.top-operators-row[data-count="1"] .operator-avatar {
  width: 48px !important;
  height: 48px !important;
  min-width: 48px;
  min-height: 48px;
}

.top-operators-row[data-count="1"] .operator-identity {
  margin-bottom: 0;
}

.top-operators-row[data-count="1"] .operator-name {
  font-size: 1.5rem;
}

@media (max-width: 720px) {
  .lb-avatar { width: 28px; height: 28px; min-width: 28px; }
  .operator-avatar { width: 36px !important; height: 36px !important; }
  .top-operators-row[data-count="1"] .operator-avatar { width: 40px !important; height: 40px !important; }
}
