/* Language Switch Styles */
.top-right-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.language-switch {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  font-weight: 500;
}

.language-switch a {
  color: #666;
  text-decoration: none;
  padding: 2px 4px;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.language-switch a:hover {
  color: #007bff;
  background-color: rgba(0, 123, 255, 0.1);
}

.language-switch a.active {
  color: #007bff;
  font-weight: 600;
}

.language-switch .separator {
  color: #ccc;
  font-size: 12px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .language-switch {
    font-size: 12px;
  }
}