.language-selector {
    position: relative;
    /*width: 200px;*/
    cursor: pointer;

    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1rem;

    padding: 0.2rem;
    font-size: 0.7rem;
    border-radius: 5px;
    border: none;
    /*background: var(--first-color);
    color: var(--second-color);*/
    background: #fff;
    color: black;
    width: 100%;
    text-align: center;
}

.selected-language {
    display: flex;
    align-items: center;
    /*justify-content: space-between;*/
    /*padding: 10px;*/
    border: 1px solid #ccc;
    border-radius: 5px;
    background: #fff;
    color: black;

    padding: 0.2rem;
    font-size: 0.8rem;
    border-radius: 5px;
    border: none;
    /*background: var(--first-color);*/
    /*color: var(--second-color);*/
    cursor: pointer;
    width: 100%;
    text-align: center;
}

.language-option {
     color: black;
}

.selected-language img {
    width: 20px;
    height: 15px;
    margin-right: 10px;
}

.dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.dropdown div {
    display: flex;
    align-items: center;
    padding: 10px;
    cursor: pointer;
}

.dropdown div:hover {
    background: #f0f0f0;
}

.dropdown img {
    width: 20px;
    height: 15px;
    margin-right: 10px;
}
