/* Style the language selector button */
.language-btn {
  background-color: transparent;
  border: none;
  cursor: pointer;
}

/* Style the language flags */
.flag {
  width: 30px;
  height: 30px;
  margin-right: 5px;
}

/* Style the dropdown content (hidden by default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 25px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
}

/* Show the dropdown content when the button is hovered over */
.language-selector:hover .dropdown-content {
  display: block;
}

/* Style the language options in the dropdown */
.language-option {
  display: block;
  padding: 10px;
  text-decoration: none;
  color: #000;
}

.language-option:hover {
  background-color: #ddd;
}
