.language-switcher {
  position: relative;
  display: inline-block;
  font-family: 'Segoe UI', sans-serif;
  margin-left: -4px; /* Custom spacing */
  padding-left: 0px;
}

.lang-toggle {
  display: flex;
  align-items: center;
  cursor: pointer;
  gap: 4px;
  padding: 0px 0px;
}

.lang-icon {
  width: 20px;
  height: 30px;
}

.lang-code {
  font-size: 15px;
  color: #007bff;
  font-weight: 400;
}

.lang-arrow {
  width: 18px;
  height: 16px;
  stroke: #007bff;
  margin-top: 3px;
  margin-left: -5px;
  margin-right: -5px;
}

/* Dropdown menu */
.lang-dropdown {
  display: none;
  position: absolute;
  top: 110%;
  left: 0;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  z-index: 999;
  padding: 0px 0;
  min-width: 30px;
}

.lang-dropdown li {
  list-style: none;
  padding: 8px 8px;
  font-size: 14px;
  font-weight: 500;
  color: #222;
  cursor: pointer;
  white-space: nowrap;
}

.lang-dropdown li:hover {
  background-color: #f1f1f1;
}
