/* Language Switcher Styles */
.language-switcher {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 8px;
  padding: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.lang-link {
  display: inline-block;
  padding: 6px 12px;
  margin: 0 2px;
  background: transparent;
  border-radius: 4px;
  text-decoration: none;
  color: #333;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.lang-link:hover {
  background: #f0f0f0;
  border-color: #ddd;
  transform: translateY(-1px);
}

.lang-link.active {
  background: #007acc;
  color: white;
  border-color: #007acc;
  box-shadow: 0 2px 4px rgba(0, 122, 204, 0.3);
}

/* Mobile responsive */
@media (max-width: 768px) {
  .language-switcher {
    top: 10px;
    right: 10px;
    padding: 6px;
  }
  
  .lang-link {
    padding: 4px 8px;
    font-size: 12px;
  }
} 