.language-switcher {
  display: flex;
  align-items: center;
  gap: 10px;
}

.language-switcher .lang-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
}

.language-switcher .lang-btn:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.language-switcher .lang-btn.active {
  background: linear-gradient(135deg, #8400D4 0%, #0066FF 100%);
  border-color: transparent;
}

.language-notification {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: linear-gradient(135deg, #8400D4 0%, #0066FF 100%);
  opacity: 0.9;
  color: white;
  padding: 15px 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  max-width: 400px;
  animation: fadeIn 0.5s ease-in-out;
}

.language-notification p {
  margin: 0 0 10px 0;
}

.language-notification .notification-action {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  padding: 5px 10px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  transition: background-color 0.3s;
}

.language-notification .notification-action:hover {
  background: rgba(255, 255, 255, 0.3);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 767px) {
  .language-switcher {
    margin-top: 10px;
  }
}
