.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 4px;
  background-color: transparent;
  height: 100%; /* Ensure it fits container */
}

.language-switcher__label {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  font-weight: 500;
  cursor: default;
  color: #6bcbe8;
  margin: 0;
  padding: 0;
}

.language-switcher__icon {
  font-size: 16px;
}

.language-switcher__select {
  padding: 6px 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
  font-family: inherit;
  background-color: white;
  cursor: pointer;
  transition: all 0.2s ease;
  min-width: 140px;
}

.language-switcher__select:hover {
  border-color: #999;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.language-switcher__select:focus {
  outline: none;
  border-color: #007bff;
  box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25);
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
  .language-switcher__label {
    color: #e0e0e0;
  }

  .language-switcher__select {
    background-color: #2a2a2a;
    color: #e0e0e0;
    border-color: #444;
  }

  .language-switcher__select:hover {
    border-color: #666;
  }
}

/* Mobile optimization */
@media (max-width: 768px) {
  .language-switcher {
    padding: 6px 8px;
  }

  .language-switcher__label {
    font-size: 13px;
  }

  .language-switcher__select {
    padding: 5px 8px;
    font-size: 13px;
    min-width: 120px;
  }
}
