.eb-custom-lang-dropdown {
    position: relative;
    display: inline-block;
}

.eb-lang-dropdown .eb-dropdown-toggle {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    padding-top: 5px;
    padding-bottom: 5px;
}

.eb-lang-dropdown .eb-dropdown-toggle img {
    width: 24px;
    height: auto;
}

.eb-lang-dropdown .current-lang {
    font-size: 16px;
    color: #273271;
}

.eb-lang-dropdown .eb-lang-dropdown-menu {
    display: none;
    position: absolute;
    background: #fff;
    list-style: none;
    padding: 5px 0;
    z-index: 9999;
    border-radius: 5px;
    margin: 0;
}

.eb-lang-dropdown .eb-lang-dropdown-menu li {
    padding: 5px 12px;
}

.eb-lang-dropdown .eb-lang-dropdown-menu li.active {
    background: #f0f0f0;
    font-weight: bold;
}

.eb-lang-dropdown .eb-lang-dropdown-menu img {
    width: 16px;
    height: auto;
    margin-right: 5px;
}

.eb-lang-dropdown .eb-lang-dropdown-menu a {
    text-decoration: none;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
}