.lang-select-wrapper {
  position: relative;
  display: inline-flex;
  align-items: center;
  margin-left: 8px;
}

.lang-select {
  appearance: none;
  -webkit-appearance: none;
  background: rgba(255,255,255,0.15);
  color: white;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 6px;
  padding: 5px 28px 5px 10px;
  font-size: 0.8rem;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s;
  min-width: 90px;
}

.lang-select:hover {
  background: rgba(255,255,255,0.25);
}

.lang-select:focus {
  outline: none;
  border-color: rgba(255,255,255,0.5);
}

.lang-select option {
  background: #1a3a5c;
  color: white;
}

.lang-select-wrapper::after {
  content: "▾";
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.7rem;
  color: rgba(255,255,255,0.7);
  pointer-events: none;
}

[dir="rtl"] .lang-select-wrapper {
  margin-left: 0;
  margin-right: 8px;
}

[dir="rtl"] .lang-select {
  padding: 5px 10px 5px 28px;
}

[dir="rtl"] .lang-select-wrapper::after {
  right: auto;
  left: 8px;
}

@media (max-width: 900px) {
  .lang-select-wrapper {
    margin: 4px 0;
    width: 100%;
  }
  .lang-select {
    width: 100%;
    min-width: unset;
  }
}
