/* One inset for native dropdown indicators throughout the website and admin. */
:root {
  --tf-select-arrow-light: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23586d81' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  --tf-select-arrow-dark: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c8d5e2' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  --tf-select-arrow: var(--tf-select-arrow-light);
}
@media (prefers-color-scheme: dark) { :root:not([data-theme="light"]) { --tf-select-arrow: var(--tf-select-arrow-dark); } }
:root[data-theme="dark"] { --tf-select-arrow: var(--tf-select-arrow-dark); }
select:not([multiple]):not([size]):not(.support-native-select),
select[size="1"]:not([multiple]):not(.support-native-select) {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 46px;
  background-image: var(--tf-select-arrow);
  background-position: right 18px center;
  background-size: 16px 16px;
  background-repeat: no-repeat;
}
.support-ui .support-select-button { padding-right: 22px !important; }
.support-ui .support-select-arrow { margin-right: 0; }
@media (forced-colors: active) {
  select:not([multiple]):not([size]):not(.support-native-select),
  select[size="1"]:not([multiple]):not(.support-native-select) { appearance: auto; -webkit-appearance: auto; background-image: none; }
}
