/* Keep the badge visible while long character names truncate inside the ranking column. */
.finance-page .finance-ranking-row > .finance-ranking-identity {
  display: flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
}
.finance-ranking-identity > .finance-ranking-name {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.finance-ranking-identity > .finance-gm-badge {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  padding: 2px 6px;
  border: 1px solid #ddd4fb;
  border-radius: 6px;
  background: #f0ebff;
  color: #6540a1;
  font-size: 10px;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: .03em;
  white-space: nowrap;
}
