.mrx-language {
  display: flex !important;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  padding: 10px 20px;
  margin: 0 !important;
  background: light-dark(#fff, #182938);
  color: light-dark(#142d43, #e7eff8);
  font:
    14px system-ui,
    sans-serif;
  border-bottom: 1px solid light-dark(#dce4ed, #33495d);
}
.mrx-language select {
  font: inherit;
  width: auto !important;
  max-width: 180px;
  min-height: 38px;
  padding: 7px 12px;
  background: light-dark(#fff, #182938);
  color: inherit;
  border: 1px solid light-dark(#aebdcb, #6c8194);
  border-radius: 6px;
  margin: 0 !important;
}
.mrx-language select:focus-visible {
  outline: 2px solid light-dark(#185ef0, #a9c3ff);
  outline-offset: 2px;
}
body:has(> .mrx-language) .shell {
  min-height: calc(100vh - 60px);
}
@media (max-width: 480px) {
  .mrx-language {
    padding: 8px 12px;
    justify-content: space-between;
  }
}
