/* Виджет назначает height: 100% , что может привести к непредксказуемому результату, если вы этого не планировали */

/* Прячем панель гугла */
body {
    top: 0 !important;
}
.skiptranslate {
    display: none !important;
}

/*.language__toggle:hover {*/
/*    background-color: #e0e0e0;*/
/*}*/

/* Модальное окно */
.language-modal {
    display: none; /* По умолчанию скрыто */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Полупрозрачный фон */
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.language-modal-content {
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    width: 300px;
    text-align: center;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    position: relative;
}

/* Кнопка закрытия */
.language-modal-close {
    position: absolute;
    top: 6px;
    right: 14px;
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
}

/* Список языков */
.language-options {
    list-style: none;
    padding: 0;
    margin: 20px 0 0 0;
}

.language-option {
    color: #081828;
    display: flex;
    align-items: center;
    padding: 10px 0;
    cursor: pointer;
    transition: background-color 0.3s;
}

.language-option:hover {
    background-color: #f0f0f0;
    /*border-radius: 10px;*/
}

.language__img {
    /*width: 24px;*/
    height: 24px;
    margin-right: 10px;
}
