#sls-language-switcher {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
    display: flex;
    gap: 10px; /* Adds space between flags */
}

.sls-flag img {
    width: 48px;
    height: auto;
    border-radius: 4px;
    /*box-shadow: 0 2px 5px rgba(0,0,0,0.2);*/
    transition: transform 0.2s ease-in-out;
}

.sls-flag:hover img {
    transform: scale(1.1);
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}