.language-switcher {
  position: absolute;
  top: 10px;
  right: 20px;
  z-index: 1000;
  display: flex;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 4px;
  padding: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.language-switcher .lang-option {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  margin: 0 3px;
  cursor: pointer;
  border-radius: 50%;
  font-size: 12px;
  font-weight: bold;
  text-decoration: none;
  color: #333;
  transition: all 0.3s ease;
}

.language-switcher .lang-option:hover {
  background-color: #f0f0f0;
}

.language-switcher .lang-option.active {
  background-color: #dccc68;
  color: #fff;
}

/* Mobile styles */
@media screen and (max-width: 750px) {
  .language-switcher {
    top: 5px;
    right: 60px;
    padding: 3px;
  }
  
  .language-switcher .lang-option {
    width: 25px;
    height: 25px;
    font-size: 10px;
  }
}

/* Floating language switcher button */
.floating-lang-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    background-color: #dccc68;
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.floating-lang-button:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.floating-lang-menu {
    position: fixed;
    bottom: 80px;
    right: 20px;
    background-color: white;
    border-radius: 5px;
    padding: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    display: none;
    flex-direction: column;
    z-index: 1000;
}

.floating-lang-menu .lang-option {
    margin: 5px 0;
    text-align: center;
}

.floating-lang-menu.show {
    display: flex;
}

/* Responsive styles */
@media (max-width: 767px) {
    .language-switcher {
        padding: 5px;
    }
    
    .lang-option {
        padding: 3px 8px;
        font-size: 12px;
    }
    
    .floating-lang-button {
        width: 40px;
        height: 40px;
        bottom: 15px;
        right: 15px;
    }
}
