.language-selector {
  display: flex;
  gap: 0px; /* space between options */
  justify-content: center;
  align-items: center;
  margin-top: 0px;
}

.language-selector .option {
  display: flex;
  align-items: center;
  gap: 0px;
  cursor: pointer;
  padding: 6px 12px;

  /* Only show left and right borders */
  border-top: none;
  border-bottom: none;
  border-left: 0.3px solid #f7f7f7;
  border-right: 0.3px solid #fcfcfc;

  border-radius: 0px;
  transition: background-color 0.2s;
}


.language-selector .option:hover {
  background-color: #f9f9f9;
}

.language-selector img {
  width: 20px;
  height: auto;
}
