.language-switcher {
  display: flex;
  align-items: center;
  margin-right: 15px;
}

.language-select {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  color: #fff;
  padding: 5px 10px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.language-select:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.3);
}

.language-select:focus {
  outline: none;
  border-color: #6ea8fe;
  box-shadow: 0 0 0 2px rgba(110, 168, 254, 0.2);
}

.language-select option {
  background: #1f2937;
  color: #fff;
}

/* Адаптивность для мобильных устройств */
@media (max-width: 768px) {
  .language-switcher {
    margin-right: 10px;
  }
  
  .language-select {
    padding: 4px 8px;
    font-size: 12px;
  }
} 