.language-switcher {
    position: fixed;
    bottom: 20px;      /* au lieu de top: 20px; */
    left: 20px;
    right: auto;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 10px;
    border-radius: 10px;
}

.language-options {
    display: flex;
    gap: 15px;
    cursor: pointer;
}

.language-item {
    display: inline-block;
    margin: 5px;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.language-item:hover {
    opacity: 0.7;
    transform: scale(1.05);
}

.flag-icon {
    width: 30px;
    height: 20px;
}
