.custom-lang-switcher {
    display: flex;
    gap: 6px;
    align-items: center;
}
.custom-lang-switcher .lang img {
    width: 24px;
    height: 24px;
    display: block;
    cursor: pointer;
    border-radius: 2px;
    transition: transform 0.2s, opacity 0.2s;
    opacity: 0.7; /* neaktivni */
}

.custom-lang-switcher .lang.active img {
    opacity: 1; /* aktivni jezik */
}

.custom-lang-switcher .lang:hover img {
    opacity: 1; /* hover efekt */
    transform: scale(1.1);
}


@media screen and (max-width: 1024px) {
    .custom-lang-switcher .lang img {
        width: 36px;
        height: 36px;
        display: block;
        cursor: pointer;
        border-radius: 2px;
        transition: transform 0.2s, opacity 0.2s;
        opacity: 0.7; /* neaktivni */
    }
}