.user-row-stats-col {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  height: 64px;
  gap: 10px;
  background: rgba(30,34,40,0.10);
  border-radius: 12px;
  padding: 8px 10px;
  min-width: 90px;
}
.user-row-stat {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 7px;
  position: relative;
  cursor: pointer;
  transition: background 0.15s;
  border-radius: 7px;
  padding: 2px 4px;
}
.user-row-stat:hover {
  background: rgba(40,44,52,0.18);
}
.user-row-stat-icon {
  width: 20px;
  height: 20px;
  display: block;
}
.user-row-stat-value {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  min-width: 18px;
  text-align: center;
}
.user-row-stat-label {
  font-size: 11px;
  color: #b0b8c1;
  margin-left: 2px;
}
.user-row-tooltip {
  display: none;
  position: absolute;
  left: 50%;
  top: 110%;
  transform: translateX(-50%);
  background: #23272f;
  color: #fff;
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 7px;
  white-space: nowrap;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.18);
  pointer-events: none;
}
.user-row-stat.active .user-row-tooltip {
  display: block;
}