.wpml-language-switcher {
    position: relative;
    display: inline-block;
    font-size: 14px;
}

.wpml-ls-dropdown {
    position: relative;
    cursor: pointer;
}

.wpml-ls-current-language {
    display: flex;
    align-items: center;
    padding: 8px 12px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    min-width: 110px;
}

.wpml-ls-current-language img {
    width: 20px;
    height: auto;
    margin-right: 8px;
}

.wpml-ls-dropdown-arrow {
    margin-left: auto;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #ffffff;
}

.wpml-ls-languages {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin: 2px 0 0;
    padding: 0;
    list-style: none;
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    z-index: 1000;
}

.wpml-ls-dropdown:hover .wpml-ls-languages {
    display: block;
}

.wpml-ls-languages li {
    margin: 0;
    padding: 0;
}

.wpml-ls-languages a,
.wpml-ls-languages span {
    display: flex;
    align-items: center;
    padding: 8px 12px;
    text-decoration: none;
    color: #ffffff;
}

.wpml-ls-languages a:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.wpml-ls-languages img {
    width: 20px;
    height: auto;
    margin-right: 8px;
}

.wpml-ls-disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.wpml-ls-disabled span {
    color: rgba(255, 255, 255, 0.5);
}

.active {
    display: none;
}