.language-switcher {
  position: fixed;
  top: 15px;
  right: 15px;
  z-index: 9999;
  display: flex;
  gap: 5px;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 5px;
  border-radius: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.language-switcher button {
  background: transparent;
  border: 1px solid #ccc;
  border-radius: 15px;
  padding: 5px 10px;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.language-switcher button.active {
  background-color: #4361ee;
  color: white;
  border-color: #4361ee;
}

.language-switcher button:hover:not(.active) {
  background-color: #eee;
}

@media (max-width: 768px) {
  .language-switcher {
    top: 10px;
    right: 10px;
  }
  
  .language-switcher button {
    padding: 3px 8px;
    font-size: 12px;
  }
}
