.stats-rows {
  list-style: none;
  padding: 0;
  margin: 0;
}
.stats-rows-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 10px 4px;
  border-bottom: 1px solid #eee;
}
.stats-rows-row:last-child {
  border-bottom: none;
}
.stats-rows-label {
  flex: 1;
  color: var(--link-color);
  text-decoration: none;
  font-size: 15px;
}
.stats-rows-label:hover {
  text-decoration: underline;
}
.stats-rows-chip {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  font-variant-numeric: tabular-nums;
}
.stats-rows-score {
  font-weight: 600;
  font-size: 15px;
}
.stats-rows-time {
  font-size: 12px;
  color: #666;
}
.stats-rows-untouched {
  font-size: 14px;
  color: #999;
  font-style: italic;
}
