.language-select {
  position: relative;
  display: inline-block;
  margin-left: 10px;
}

.lang-btn {
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 12px;
  padding: 7px 9px;
  cursor: pointer;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.lang-options {
  display: none;
  position: absolute;
  top: 105%;
  left: 0;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 12px;
  width: fit-content;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  z-index: 1000;
}

.lang-options a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px;
  text-decoration: none;
  color: #333;
  font-size: 15px;
}

.lang-options a:hover {
  background: #f2f2f2;
}

.language-select:hover .lang-options {
  display: block;
}

.lang-btn img,
.lang-options img {
  width: 20px;
  height: 14px;
  border-radius: 2px;
}
