/* Language Switcher Styles */

.language-switcher {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-left: 0;
}

nav .language-switcher {
  margin-left: 0;
}

.language-switcher .lang-btn {
  background: transparent;
  border: 2px solid #005ca9;
  color: #005ca9;
  padding: 4px 10px;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 4px;
  text-decoration: none;
  display: inline-block;
  min-width: 40px;
  text-align: center;
}

.language-switcher .lang-btn:hover {
  background: #005ca9;
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 2px 4px rgba(0, 92, 169, 0.3);
}

.language-switcher .lang-btn.active {
  background: #005ca9;
  color: white;
  font-weight: bold;
}

.language-switcher .lang-separator {
  color: #005ca9;
  font-weight: bold;
  user-select: none;
}

@media (max-width: 768px) {
  .language-switcher {
    margin-left: 10px;
  }
  
  .language-switcher .lang-btn {
    padding: 3px 8px;
    font-size: 12px;
    min-width: 35px;
  }
}

.sidebar-nav .language-switcher {
  padding: 15px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin: 20px 0 0 0;
  justify-content: center;
}

.sidebar-nav .language-switcher .lang-btn {
  border-color: white;
  color: white;
}

.sidebar-nav .language-switcher .lang-btn:hover {
  background: white;
  color: #005ca9;
}

.sidebar-nav .language-switcher .lang-btn.active {
  background: white;
  color: #005ca9;
}

.sidebar-nav .language-switcher .lang-separator {
  color: white;
}
