/* Language Switcher Styles */

.lang-switcher {
  display: inline-block;
  margin-right: 10px;
}

.language-toggle {
  display: flex;
  gap: 5px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 4px;
}

.lang-btn {
  background: transparent;
  border: none;
  color: inherit;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 16px;
  transition: all 0.3s ease;
  font-family: inherit;
}

.lang-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}

.lang-btn.active {
  background: rgba(255, 255, 255, 0.9);
  color: #333;
}

/* Dark mode adjustments */
body.dark .language-toggle {
  background: rgba(0, 0, 0, 0.2);
}

body.dark .lang-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}

body.dark .lang-btn.active {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

/* Responsive design */
@media screen and (max-width: 768px) {
  .lang-switcher {
    margin-right: 5px;
  }
  
  .lang-btn {
    font-size: 12px;
    padding: 5px 10px;
  }
}

/* Print styles - hide language switcher */
@media print {
  .lang-switcher {
    display: none !important;
  }
}
