/* Keep the invisible native Settings select out of normal flow.
   A legacy `.settingsSection select` rule changed it back to `position: relative`,
   stacking 48px above the visible themed button and making each control 100px tall. */
#settings .settingsSection .themedSelect > select.themedNativeSelect {
  position: absolute !important;
  inset: 0 auto auto 0 !important;
  display: block !important;
  width: 1px !important;
  min-width: 1px !important;
  max-width: 1px !important;
  height: 1px !important;
  min-height: 0 !important;
  max-height: 1px !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
#settings .settingsSection .themedSelect,
#settings .settingsSection .selectControl:has(> .themedSelect) {
  min-height: 52px !important;
  height: 52px !important;
  max-height: 52px !important;
}