/* Keep the browser number stepper and the score denominator on separate rows. */
.score-grid small {
  position: static;
  align-self: flex-end;
  min-height: 18px;
  line-height: 18px;
}

.region-control {
  gap: 14px;
  color: var(--navy);
  font-size: 19px;
  font-weight: 900;
  white-space: nowrap;
}

.region-control select {
  min-width: 168px;
  height: 54px;
  padding: 0 42px 0 16px;
  border: 2px solid #cbdafa;
  border-radius: 14px;
  background-color: #fff;
  color: var(--navy);
  font-size: 18px;
  font-weight: 800;
  cursor: pointer;
}

.region-control select:hover {
  border-color: var(--blue);
}

.region-control select:focus-visible {
  border-color: var(--blue);
  outline: 3px solid #1557e824;
  outline-offset: 2px;
}

@media (max-width: 560px) {
  .region-control {
    width: 100%;
    justify-content: space-between;
  }

  .region-control select {
    width: 62%;
    min-width: 0;
  }
}
