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

.custom-select {
    position: relative;
}

.selected-option {
    cursor: pointer;
    padding: 3px 10px;
    border: 1px solid #ccc;
    display: flex;
    align-items: center;
    border-radius: 20px;
    background-color: #FFFFFF30;
}

.selected-option img {
    margin-right: 5px;
    width: 20px;
    height: 20px;
}

.options-list {
    width: 120px;
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #ccc;
    list-style: none;
    padding: 0;
    margin: 0;
    z-index: 1;
    border-radius: 5px;
}

.options-list li {
    padding: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    color: black;
}

.options-list li:hover {
    background-color: #f0f0f0;
}

.options-list img {
    margin-right: 5px;
    width: 20px;
    height: 20px;
    border: 1px solid #ccc;
    border-radius: 100%;
}
