.languageSwitcher {
  position: relative;
  display: inline-block;
  z-index: 10002;
}

.languageButton {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 8px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 12px;
  color: #2a2f43;
  font-weight: 500;
  transition: color 0.2s ease;
  line-height: 1.3;
}

.languageButton:hover {
  color: #E30A1D;
}

.flag {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.flag img {
  display: block;
}

.currentLanguage {
  font-weight: 600;
}

.chevron {
  width: 8px;
  height: 6px;
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.chevronOpen {
  transform: rotate(180deg);
}

#languageDropdown {
  position: fixed !important;
  z-index: 10003 !important;
  background: white !important;
  border: 1px solid #ddd !important;
  border-radius: 6px !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
  min-width: 150px !important;
  overflow: hidden !important;
}

.languageOption {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 10px 14px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 13px;
  color: #333;
  transition: background-color 0.2s ease;
}

.languageOption:hover {
  background-color: #f5f5f5;
}

.languageOption.active {
  background-color: #f8f9fa;
  font-weight: 600;
}

.languageOption .flag {
  width: 14px;
  height: 10px;
}

.languageName {
  flex: 1;
}

.checkmark {
  width: 14px;
  height: 14px;
  color: #E30A1D;
  flex-shrink: 0;
}

