.track-wrapper {
  margin: 16px 0;
}

.track-label {
  font-weight: bold;
  margin-bottom: 6px;
  display: block;
}

.track {
  display: flex;
  gap: 6px;
  user-select: none;
}

.track-cell {
  width: 18px;
  height: 18px;
  position: relative;
  cursor: pointer;
}

.track-cell::before {
  content: "";
  width: 18px;
  height: 18px;
  border-radius: 50%;
  transparent: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.track-cell.filled::before {
  background: #622;
  transparent: 0%;
}

.track-value {
  margin-top: 6px;
  font-size: 14px;
  color: #444;
}