/* Basic styles for the language switcher to ensure it's visible and usable */
.language-switcher {
  position: relative;
  display: inline-block;
  margin-left: 0.5rem;
}

.language-toggle {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.5rem;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 6px;
  background: #fff;
  color: #111;
  font: inherit;
}

.language-toggle .dropdown-arrow {
  font-size: 0.75rem;
  opacity: 0.7;
}

.language-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  min-width: 160px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 8px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
  z-index: 1000;
}

.language-option {
  display: block;
  width: 100%;
  text-align: left;
  padding: 0.5rem 0.75rem;
  background: transparent;
  border: none;
  cursor: pointer;
  font: inherit;
}

.language-option.active {
  background: rgba(0,0,0,0.06);
}

.language-option:hover {
  background: rgba(0,0,0,0.08);
}
