.language-dropdown {
  position: relative;
  display: inline-block;
  font-family: sans-serif;
}

.dropdown-toggle {
  background-color: #fff;
  color: #333;
  border: 0px solid #fff;
  padding: 8px 12px;
  cursor: pointer;
  min-width: 120px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  border-radius: 4px;
}

.arrow {
  margin-left: auto;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 4px;
  background-color: white;
  border: 1px solid #ccc;
  min-width: 140px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  z-index: 1000;
  border-radius: 4px;
}

.language-dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu li {
  list-style: none;
}

.dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  text-decoration: none;
  color: #333;
}

.dropdown-menu a:hover {
  background-color: #f0f0f0;
}

.img-flag {
    display: inline-block;
    max-width: 30%;
    height: auto;
}