.language-switcher {
  background: white;
  padding: 8px 12px;
  border-radius: 25px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  gap: 10px;
  align-items: center;
}

.language-switcher a {
  text-decoration: none;
  padding: 5px 12px;
  border-radius: 15px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s;
  display: inline-block;
}

.language-switcher a.active {
  background: #3498db;
  color: white;
}

.language-switcher a:not(.active) {
  background: #ecf0f1;
  color: #34495e;
}

.language-switcher a:hover:not(.active) {
  background: #bdc3c7;
}

.language-switcher .flag {
  font-size: 18px;
  margin-right: 3px;
}