.lang-switcher {
  background-color: transparent;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  user-select: none;
}

.lang-switcher img,
.language-option img {
  height: 24px;
  width: auto;
}

#language-popup-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(0,0,0,0.5);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}

#language-popup {
  background: white;
  padding: 20px;
  border-radius: 6px;
  max-width: 90vw;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
}

#language-popup-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

#language-popup-grid .language-option {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px;
  border-radius: 3px;
  transition: background 0.2s;
  color: #1B6DAE;
  text-decoration: none;
}

#language-popup-grid .language-option:hover {
  background-image: linear-gradient(to left, rgba(19, 111, 189, 1), rgba(101, 186, 248, 1));
  color: #FFF;
}

#close-language-popup {
  position: absolute;
  top: 8px;
  right: 12px;
  font-size: 20px;
  cursor: pointer;
}
