
.language-selector {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 10px;
  z-index: 9999;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropbtn {
  background-color: rgba(0,64,128,0.5);
  color: white;
  padding: 4px 10px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 1rem;
  border-radius: 10px;
  transition: background 0.2s ease;
}

.dropbtn img {
  width: 20px;
  height: 14px;
  object-fit: cover;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: rgba(0,64,128,0.5);
  min-width: max-content;
  padding: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
  z-index: 1;
  border-radius: 10px;
  overflow: hidden;
  right: 0;
}

.dropdown-content a {
  color: white;
  padding: 4px 10px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 1rem;
  border-radius: 10px;
}

.dropdown-content a img {
  width: 20px;
  height: 14px;
  object-fit: cover;
}

.dropdown-content a:hover {
  background-color: rgba(0, 0, 255, 0.2);
}

.lang-name {
  margin-left: 5px;
}

@media (max-width: 767px) {
  .lang-name {
    display: none;
  }
}
