.exam-world-switch {
  display: inline-grid;
  grid-template-columns: 1fr 1fr;
  flex: 0 0 auto;
  padding: 3px;
  border: 1px solid var(--border, rgba(127, 127, 127, .25));
  border-radius: 999px;
  background: var(--surface, rgba(127, 127, 127, .08));
}

.exam-world-switch button {
  min-width: 48px;
  padding: 8px 11px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted, #8f8987);
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  transition: color .18s ease, background .18s ease, transform .18s ease;
}

.exam-world-switch button:hover {
  color: var(--text, #f5efec);
}

.exam-world-switch button:active {
  transform: scale(.96);
}

.exam-world-switch button.is-active {
  background: #cf2c0b;
  color: #fff;
  box-shadow: 0 6px 18px rgba(207, 44, 11, .22);
}

@media (max-width: 900px) {
  .exam-world-switch {
    margin-left: auto;
  }

  .exam-world-switch button {
    min-width: 44px;
    padding: 7px 9px;
  }
}
