/*!
 * public/experimental/shared/language-selector.css
 *
 * Styles the four-option language selector rendered by language-selector.js.
 * Designed to fit at 390px and be reachable on every entry page.
 */

.utuvo-locale-select {
  display: inline-block;
  box-sizing: border-box;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border: 1px solid rgba(127, 127, 127, 0.45);
  background: rgba(255, 255, 255, 0.06);
  color: inherit;
  font: 12px / 1.2 -apple-system, BlinkMacSystemFont, "PingFang TC", "Microsoft JhengHei", "Hiragino Sans", sans-serif;
  padding: 4px 24px 4px 8px;
  border-radius: 999px;
  height: 32px;
  min-height: 32px;
  line-height: 24px;
  cursor: pointer;
  max-width: 100%;
}

.utuvo-locale-select:focus-visible {
  outline: 3px solid var(--focus, #c25e3f);
  outline-offset: 3px;
}

@media (max-width: 560px) {
  .utuvo-locale-select {
    font-size: 11px;
    padding: 3px 20px 3px 6px;
    height: 32px;
    min-height: 32px;
    line-height: 24px;
  }
}
