.matchSelector {
  --switch-bgOn: var(--primary-light-400);
  --switch-bgOff: var(--neutral-200);
  --Text-primaryNoneBg: var(--opacity-70b);
  --switch-borderOff: var(--neutral-500);
}

@media (prefers-color-scheme: dark){ 
.matchSelector {
  --switch-bgOn: var(--primary-dark-600);
  --switch-bgOff: var(--neutral-200);
  --Text-primaryNoneBg: var(--base-white);
  --switch-borderOff: var(--neutral-400);
} 
} 

.matchSelector{
  width: 100%;
}

.matchGrid {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.matchRow {
  display: flex;
  gap: 0;
  align-items: center;
  width: 100%;
  position: relative;
}

.matchCell {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  position: relative;
  flex: 1;
}

.matchLabel{
  color: var(--Text-primaryNoneBg);
}

.circleWrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.matchCircle {
  width: 0.89819rem;
  height: 0.89819rem;
  border-radius: 50%;
  background-color: var(--switch-bgOff);
  border: 1px solid var(--switch-bgOff);
  z-index: 2;
  position: relative;
}

.matchCircle.active {
  background-color: var(--switch-bgOn);
  border: 1px solid var(--switch-bgOff);
}

.matchRow::before {
  content: '';
  position: absolute;
  left: calc(100% / (var(--total-items) * 2));
  right: calc(100% / (var(--total-items) * 2));
  top: 83%;
  transform: translateY(-50%);
  height: min(0.188rem, 3px);
  background-color: var(--switch-borderOff);
  z-index: 1;
}