.global-version-switcher {
  position: fixed;
  right: 18px;
  top: calc(76px + 14px);
  z-index: 80;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 10px 9px 12px;
  color: #171512;
  background: rgba(255, 253, 248, 0.94);
  border: 1px solid rgba(23, 21, 18, 0.16);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(23, 21, 18, 0.18);
  font-family: "Nunito Sans", "Segoe UI", sans-serif;
  letter-spacing: 0;
  backdrop-filter: blur(18px);
}

.global-version-switcher span {
  color: rgba(23, 21, 18, 0.62);
  font-size: 0.74rem;
  font-weight: 800;
  white-space: nowrap;
}

.global-version-switcher select {
  min-width: 166px;
  padding: 6px 28px 6px 0;
  color: #171512;
  background:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 6l4 4 4-4' fill='none' stroke='%23171512' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
    right 4px center / 14px no-repeat;
  border: 0;
  border-radius: 0;
  appearance: none;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0;
  cursor: pointer;
}

.global-version-switcher select:focus-visible {
  outline: 2px solid #9e6b62;
  outline-offset: 4px;
}

@media (max-width: 680px) {
  .global-version-switcher {
    right: 12px;
    top: calc(68px + 10px);
    justify-content: space-between;
  }

  .global-version-switcher select {
    min-width: 0;
    width: 100%;
  }
}
