/*
 * This is a manifest file that'll be compiled into application.css.
 *
 * With Propshaft, assets are served efficiently without preprocessing steps. You can still include
 * application-wide styles in this file, but keep in mind that CSS precedence will follow the standard
 * cascading order, meaning styles declared later in the document or manifest will override earlier ones,
 * depending on specificity.
 *
 * Consider organizing styles into separate files for maintainability.
 */

/* Language Switcher */
.language-switcher {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1000;
  background: white;
  padding: 10px 15px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  max-width: 300px;
}

.lang-link {
  padding: 5px 10px;
  text-decoration: none;
  color: #667eea;
  border-radius: 4px;
  font-size: 14px;
  transition: all 0.3s;
  background: transparent;
}

.lang-link:hover {
  background: #f0f0f0;
}

.lang-link.active {
  background: #667eea;
  color: white;
  font-weight: 600;
}
