.autx-switcher {
  --autx-sw-bg: #0b3a48;
  --autx-sw-fg: #f4fafc;
  --autx-sw-muted: rgba(244, 250, 252, 0.78);
  --autx-sw-chip: rgba(255, 255, 255, 0.12);
  --autx-sw-chip-hover: rgba(255, 255, 255, 0.2);
  --autx-sw-active: #0088b0;
  --autx-sw-border: rgba(255, 255, 255, 0.18);
  font-family: "Segoe UI", "Noto Sans", "Noto Nastaliq Urdu", "Helvetica Neue", Arial, sans-serif;
  font-size: 13px;
  line-height: 1.3;
  color: var(--autx-sw-fg);
  background: linear-gradient(90deg, #072f3a 0%, #0b3a48 45%, #0a5163 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 6px 18px -14px rgba(0, 0, 0, 0.55);
  z-index: 100050;
}

.autx-switcher--header {
  position: sticky;
  top: 0;
  width: 100%;
}

.autx-switcher--inline {
  position: relative;
  border-radius: 12px;
  margin: 0 0 1rem;
  border: 1px solid rgba(0, 136, 176, 0.28);
}

.autx-switcher__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.65rem 1rem;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0.55rem 1rem;
}

.autx-switcher__group {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  min-width: 0;
}

.autx-switcher__divider {
  width: 1px;
  height: 1.55rem;
  background: var(--autx-sw-border);
}

.autx-switcher__label {
  color: var(--autx-sw-muted);
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: nowrap;
  font-size: 0.78rem;
  text-transform: uppercase;
}

.autx-switcher__select {
  appearance: none;
  -webkit-appearance: none;
  min-width: 9.5rem;
  max-width: 100%;
  min-height: 2.15rem;
  padding: 0.35rem 2rem 0.35rem 0.7rem;
  border-radius: 8px;
  border: 1px solid var(--autx-sw-border);
  background-color: var(--autx-sw-chip);
  background-image: linear-gradient(45deg, transparent 50%, #fff 50%),
    linear-gradient(135deg, #fff 50%, transparent 50%);
  background-position: calc(100% - 14px) calc(50% - 3px), calc(100% - 9px) calc(50% - 3px);
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  color: #fff;
  font-weight: 700;
  font-size: 0.86rem;
  cursor: pointer;
  transition: background-color 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}

.autx-switcher__select:hover,
.autx-switcher__select:focus {
  background-color: var(--autx-sw-chip-hover);
  border-color: rgba(255, 255, 255, 0.35);
  outline: none;
  box-shadow: 0 0 0 2px rgba(0, 136, 176, 0.35);
}

.autx-switcher__select option {
  color: #0f172a;
  background: #fff;
  font-weight: 600;
}

html[dir="rtl"] .autx-switcher__inner,
.autx-rtl .autx-switcher__inner {
  justify-content: flex-start;
}

html[dir="rtl"] .autx-switcher__select,
.autx-rtl .autx-switcher__select {
  padding: 0.35rem 0.7rem 0.35rem 2rem;
  background-position: 14px calc(50% - 3px), 9px calc(50% - 3px);
}

@media (max-width: 720px) {
  .autx-switcher__inner {
    justify-content: stretch;
    padding: 0.6rem 0.75rem;
    gap: 0.55rem;
  }

  .autx-switcher__divider {
    display: none;
  }

  .autx-switcher__group {
    width: 100%;
    justify-content: space-between;
  }

  .autx-switcher__select {
    flex: 1;
    min-width: 0;
  }
}
