.language-switcher.glassy {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 10;
  
 
  padding: 8px;
  border-radius: 12px;
  cursor: pointer;

  transform: translateY(0);
  opacity: 1;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.language-switcher.glassy.hidden {
  transform: translateY(100px);
  opacity: 0;
  
}


.selected, .option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  background: rgba(255,255,255,0.2);
  border-radius: 8px;
}

.options {
  display: none;
  position: absolute;
  bottom: 100%; /* Changed from top: 105% */
  left: 0;
  width: 100%;
  backdrop-filter: blur(8px);
  background: rgba(0,0,0,0.3);
  border-radius: 10px;
  z-index: 20;
  margin-bottom: 5px; /* Added some spacing between the select and options */
}

.custom-select.open .options {
  display: block;
}

.option:hover {
  background: rgba(255,255,255,0.3);
}

.fi {
  font-size: 18px;
}