/* Settings selects: discard the legacy stretchable SVG segment and draw one compact chevron. */
#settings .settingsSection .themedSelectButton {
  position: relative !important;
  display: flex !important;
  align-items: center !important;
  min-height: 52px !important;
  height: 52px !important;
  max-height: 52px !important;
  padding: 0 42px 0 14px !important;
  overflow: hidden !important;
}
#settings .settingsSection .themedSelectButton svg { display: none !important; }
#settings .settingsSection .themedSelectButton::before { content: none !important; display: none !important; }
#settings .settingsSection .themedSelectButton::after {
  content: "" !important;
  display: block !important;
  position: absolute !important;
  top: 50% !important;
  right: 17px !important;
  width: 8px !important;
  height: 8px !important;
  margin: -6px 0 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-right: 2px solid var(--accent2) !important;
  border-bottom: 2px solid var(--accent2) !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  transform: rotate(45deg) !important;
  transform-origin: center !important;
  pointer-events: none !important;
}
#settings .settingsSection .themedSelectButton[aria-expanded="true"]::after {
  margin-top: -2px !important;
  transform: rotate(225deg) !important;
}