/* Language Selector Fixed at Top-Left */
.lang-corner-selector {
  position: fixed; /* Fixed position */
  top: 10px; /* Top margin */
  left: 10px; /* Left margin */
  z-index: 9999; /* Make sure it appears on top */
  background-color: #fffbe6; /* Light yellow background */
  padding: 5px 10px;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.5); /* Glow effect */
}

/* Style the dropdown */
.custom-lang-dropdown {
  font-size: 0.85rem;
  padding: 5px 8px;
  border-radius: 5px;
  border: 1px solid #f0c040;
  background-color: #fffbe6;
  color: #333;
  font-weight: 500;
  transition: all 0.3s ease;
}

/* Hover effect on dropdown */
.custom-lang-dropdown:hover {
  border-color: #ffc107;
  background-color: #fff3cd;
  cursor: pointer;
}
