.language-selector {
    position: relative;
    display: inline-block;
}

.language__toggle {
    background: white;
    color: black;
    display: flex;
    align-items: center;
    justify-content: center;    
    border: none;
    cursor: pointer;
    gap: 5px;
}

.language__toggle-icon-globe img {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 15px;
    height: 15px;
}

.language-list {
    display: none;
    position: absolute;
    font-family:
        -apple-system,
        BlinkMacSystemFont,
        Trebuchet MS,
        sans-serif;
    font-size: 13px;
    top: 100%;
    left: -27px;
    background: white;
    border: 1px solid #ccc;
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100px;
    z-index: 101;
}

.language-list li {
    padding: 10px;
    cursor: pointer;
}

.language-list li:hover {
    background: #e6f5e1;
}

.language-selector.active .language-list {
    display: block;
}

