* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Noto Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    font-variation-settings: "wdth" 100;
}

body {
    --primary-text-color: rgba(0, 0, 0, 0.9);
    --secondary-text-color: rgba(0, 0, 0, 0.56);
    --hover-background-color: rgba(0, 0, 0, 0.04);
    --card-background-color: #F5F7F7;
    --card-border-color: rgba(50, 51, 51, 0.02);
    --primary-color: #00ABC2;
    --mobile-width: 500px;
    --success-color: #0CB91D;
    --warning-color: #FFA600;
    --error-color: #FF0000;
    --gray-color: #A3A3A3;
    position: relative;
}

@media screen and (max-width: 500px) {
    .show-on-desktop {
        display: none !important;
    }
}

@media screen and (min-width: 500px) {
    .hide-on-desktop {
        display: none !important;
    }
}

.wrapper {
    max-width: 1280px;
    padding: 0 32px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    min-height: 100vh;

    @media screen and (max-width: 500px) {
        padding: 0;
    }
}

.page-content {
    @media screen and (max-width: 500px) {
        padding: 0 10px;
        overflow: hidden;
    }
}


.header {
    height: 68px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    /*position: sticky;*/
    /*top: 0;*/

    .header-section {
        display: flex;
        align-items: center;
        gap: 15px;

        .header-search-block {
            display: flex;
            gap: 10px;
            align-items: center;
            cursor: pointer;

            span {
                font-weight: 600;
                font-size: 14px;
                color: var(--primary-text-color);
            }
        }
    }

    .header-links {
        display: flex;
        gap: 2px;
        align-items: center;

        .header-links-wrapper {
            display: flex;
            overflow-x: auto;

            > a {
                flex-shrink: 0;
            }
        }

        #header-item-article-dropdown {
            display: none;
        }

        @media (max-width: 1270px) {
            #header-item-article-link {
                display: none;
            }

            #header-item-article-dropdown {
                display: flex;
            }
        }

        #header-item-news-dropdown {
            display: none;
        }

        @media (max-width: 1190px) {
            #header-item-news-link {
                display: none;
            }

            #header-item-news-dropdown {
                display: flex;
            }
        }

        #header-item-seismology-dropdown {
            display: none;
        }

        @media (max-width: 1100px) {
            #header-item-seismology-link {
                display: none;
            }

            #header-item-seismology-dropdown {
                display: flex;
            }
        }

        #header-item-stat-dropdown {
            display: none;
        }

        @media (max-width: 910px) {
            #header-item-stat-link {
                display: none;
            }

            #header-item-stat-dropdown {
                display: flex;
            }
        }
    }

    .header-links-item {
        padding: 0 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 32px;
        font-size: 14px;
        font-weight: 600;
        gap: 10px;
        cursor: pointer;
        color: var(--primary-text-color);

        span {
            font-weight: 600;
        }
    }
}

.header-mobile {
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    width: 100%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.plain-link {
    color: inherit;
    text-decoration: none;
    cursor: pointer;
    outline: none;
    background: none;
    border: none;
}

.plain-link-active {
    color: var(--primary-color);
    .header-links-item {
        color: var(--primary-color);
    }
}

.custom-select {
    position: relative;

    .dropdown {
        background: #fff;
        box-shadow: 0 0 4px 0 rgba(8, 35, 48, 0.04);
        position: absolute;
        border-radius: 8px;
        padding: 3px 0;
        left: 50%;
        transform: translateX(-50%);
        display: none;

        > div, > a {
            padding: 5px 15px;
            min-height: 32px;
            display: flex;
            align-items: center;
            cursor: pointer;
            font-size: 14px;
            font-weight: 600;
            gap: 10px;

            &:hover {
                background: rgba(0, 0, 0, 0.04);
            }
        }
    }

    .opened-dropdown {
        display: block;
    }

    .arrow-rotate {
        transform: rotate(180deg);
    }
}

.input-with-icon {
    position: relative;
    height: 32px;

    input {
        border: none;
        outline: none;
        height: 100%;
        padding: 0 10px 0 25px;
        width: 90px;
        background: transparent;

        &::placeholder {
            font-size: 14px;
            font-weight: 600;
            color: var(--primary-text-color);
        }
    }

    img {
        position: absolute;
        top: 10px;
        left: 5px;
    }
}

.section {
    .section-header {
        display: flex;
        align-items: center;
        justify-content: space-between;

        .title {
            color: var(--primary-text-color);
            font-weight: 700;
            font-size: 24px;

            @media screen and (max-width: 500px) {
                font-size: 18px;
            }
        }

        .buttons {
            display: flex;
            align-items: center;
            gap: 15px;
        }
    }

    .container {
        margin-top: 15px;
    }
}

.margin-top-offset {
    margin-top: 40px;
}

.outline-button {
    color: var(--primary-color) !important;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    background: transparent !important;
}

.card-wrapper {
    background: var(--card-background-color);
    border: 1px solid var(--card-border-color);
    border-radius: 16px;
    padding: 10px;
}

.footer {
    width: 100%;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding: 20px 0 30px 0;
    display: flex;
    flex-direction: column;
    gap: 20px;

    @media screen and (max-width: 500px) {
        padding: 20px 10px;
    }

    .footer-row {
        display: flex;
        gap: 20px;
        width: 100%;
        justify-content: space-between;

        @media screen and (max-width: 500px) {
            flex-direction: column;
        }

        .footer-column {
            display: flex;
            flex-direction: column;
            gap: 5px;
            font-weight: 400;
            font-size: 14px;
            color: var(--secondary-text-color);

            .footer-column-title {
                font-weight: 600;
                font-size: 16px;
                color: var(--primary-text-color);
                margin-bottom: 5px;
            }
        }

        .links-row {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .authorization-button {
            cursor: pointer;
            font-size: 14px;
            font-weight: 600;
            color: var(--secondary-text-color);
        }
    }

    .copyright {
        font-size: 14px;
        font-weight: 400;
        color: var(--secondary-text-color)
    }
}

.earth-shake-button {
    border-radius: 6px;
    padding: 6px 12px;
    background: rgba(255, 0, 0, 1);
    color: white;
    font-size: 14px;
    font-weight: 600;
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    z-index: 999;
}

.modal {
    position: fixed;
    background: #ffffff;
    border-radius: 16px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1001;
    display: none;
    max-height: 90%;
    flex-direction: column;

    @media screen and (max-width: 500px) {
        bottom: 0;
        left: 0;
        transform: none;
        top: unset;

        border-radius: 16px 16px 0 0;
    }

    .modal-mobile-content {
        padding: 0 10px 20px 10px;
        position: relative;
    }

    .modal-mobile-list-container {
        display: flex;
        flex-direction: column;
        gap: 20px;
        padding: 10px;

        a {
            font-size: 14px;
            font-weight: 600;
        }

        div {
            font-size: 14px;
            font-weight: 600;
        }
    }

    .modal-mobile-close {
        width: 40px;
        height: 4px;
        background: rgba(0, 0, 0, 0.3);
        position: absolute;
        top: 10px;
        left: 50%;
        transform: translate(-50%, 0);
    }

    .modal-header {
        display: flex;
        justify-content: space-between;
        padding: 0 20px;
        height: 72px;
        align-items: center;
        flex-shrink: 0;

        span {
            font-weight: 700;
            font-size: 18px;
            color: var(--primary-text-color);
        }

        .modal-close-button {
            width: 25px;
            height: 25px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
        }
    }

    .modal-content {
        padding: 0 20px;
        flex: 1;
        overflow-y: auto;
        overflow-x: hidden;
    }

    .modal-footer {
        display: flex;
        gap: 10px;
        justify-content: flex-end;
        align-items: center;
        padding: 0 20px;
        height: 72px;
        flex-shrink: 0;
    }
}

.button-wrapper {
    padding: 6px 12px;
    outline: none;
    border: none;
    background: var(--primary-color);
    color: #fff;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
}

.button-wrapper-outline {
    background: var(--card-background-color);
    color: var(--primary-text-color);
}

.label-value {
    display: flex;
    flex-direction: column;
    gap: 5px;

    span {
        font-weight: 600;
        font-size: 12px;
        color: var(--primary-text-color);
    }
}

input[type="date"]::-webkit-calendar-picker-indicator {
    background-image: url('../../assets/images/calendar-icon.svg');
    background-size: contain;
    opacity: 1;
}

input[type="date"]::-webkit-inner-spin-button,
input[type="date"]::-webkit-clear-button {
    display: none;
}

.row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.datepicker {
    width: 100%;
    border: var(--card-border-color);
    outline: none;
    background: rgba(245, 247, 247, 1);
    height: 32px;
    padding: 0 10px;
    border-radius: 8px;
    color: var(--primary-text-color);
    font-weight: 400;
    font-size: 14px;
}

.radio {
    display: flex;
    align-items: center;
    gap: 5px;

    input {
        width: 20px;
        height: 20px;
        border-radius: 50%;
    }

    input[type=radio] {
        appearance: none;
        background-clip: content-box;
        border: 2px solid rgba(0, 0, 0, 0.3);
    }

    input[type="radio"]:checked {
        background-color: var(--primary-color);
        padding: 4px;
        border: 2px solid var(--primary-color);
    }

    label {
        font-weight: 400;
        font-size: 14px;
        color: var(--primary-text-color);
    }
}

.text-field {
    height: 32px;
    width: 100%;
    border: 1px solid var(--card-border-color);
    outline: none;
    padding: 0 10px;
    background: var(--card-background-color);
    border-radius: 8px;
    font-weight: 400;
    font-size: 14px;
}

.textarea-field {
    height: 72px;
    resize: none;
    padding: 5px 10px;
}

.upload-wrapper {
    display: flex;
    flex-direction: column;
    gap: 10px;

    span {
        color: var(--primary-text-color);
        font-size: 16px;
        font-weight: 700;
    }

    /* Скрываем ненужные элементы */
    .dz-preview .dz-progress,
    .dz-preview .dz-success-mark,
    .dz-preview .dz-error-mark {
        display: none !important;
    }

    #dropzone-block {
        padding: 0;
    }

    .dropzone {
        padding: 0;
        height: auto;
        min-height: auto;
        border: none;
        background: var(--card-background-color);
        border-radius: 8px;
    }

    .dz-message {
        margin: 0 !important;
        font-size: 14px;
        color: var(--secondary-text-color);
        font-weight: 400;
        padding: 20px 0;

        span {
            font-weight: 700;
            color: var(--primary-text-color);
            font-size: 14px;
        }
    }

    .dz-drag-hover {
        border: 2px dashed var(--primary-color) !important;
    }

    .file-preview-container {
        display: flex;
        justify-content: space-between;
        align-items: center;

        .image-block {

            display: flex;
            align-items: center;
            gap: 20px;

            img {
                height: 72px;
                width: 72px;
                border-radius: 8px;
                object-fit: cover;
            }

            .image-description-block {
                display: flex;
                flex-direction: column;
                gap: 5px;

                span:nth-child(1) {
                    font-size: 14px;
                    font-weight: 400;
                    color: var(--primary-text-color);
                }

                span:nth-child(2) {
                    font-size: 14px;
                    font-weight: 400;
                    color: var(--secondary-text-color);
                }
            }
        }
    }
}

.divider {
    width: 100%;
    height: 0;
    border: 1px solid rgba(0, 0, 0, 0.12);
}

.breadcrumbs {
    display: inline-block;
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;

    span {
        font-size: 14px;
        font-weight: 600;
        color: rgba(0, 0, 0, 0.4);
        padding: 0 2px;
    }

    .item {
        cursor: pointer;
    }

    .active {
        color: var(--primary-text-color);
    }
}

.table-container {
    width: 100%;
    overflow-x: auto;
    white-space: nowrap;
}

table {
    width: 100%;
    border: 0;
    border-spacing: 0 5px;
    border-collapse: collapse;
    background: transparent;

    .table-cell-row {
        display: flex;
        align-items: center;
        gap: 5px;
    }

    tr {
        height: 40px;
        border-radius: 8px;
    }

    tr:not(:has(table)):not(:has(th)) {
        cursor: pointer;
    }

    tr:not(:has(table)):not(:has(th)):hover {
        background: rgba(0, 0, 0, 0.08) !important;
    }

    tr {
        td {
            padding: 0 5px;
        }

        th {
            padding: 0 5px;
        }
    }

    tbody > tr:not(:has(table)):nth-child(odd) {
        background: rgba(0, 0, 0, 0.03);
    }

    thead {
        border-bottom: 1px solid rgba(0, 0, 0, 0.12);
        border-collapse: separate;
    }

    th {
        text-align: left;
        font-size: 12px;
        color: var(--secondary-text-color);
    }

    th:nth-child(1) {
        color: var(--primary-text-color);
    }

    td {
        font-size: 12px;
        font-weight: 400;
        color: var(--secondary-text-color);
    }

    td:nth-child(1) {
        color: var(--primary-text-color);
    }

    .table-order {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .selected-row {
        background: rgba(0, 0, 0, 0.06) !important;
    }
}

.success {
    color: var(--success-color);
}

.warning {
    color: var(--warning-color);
}

.error {
    color: var(--error-color);
}

.success-bg {
    background: var(--success-color);
}

.warning-bg {
    background: var(--warning-color);
}

.error-bg {
    background: var(--error-color);
}

.gray-bg {
    background: var(--gray-color);
}

.inner-table {
    background: rgba(0, 0, 0, 0.03);
}

.button-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;

    &:hover {
        background: rgba(0, 0, 0, 0.04);
    }
}

.pagination {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;

    @media screen and (max-width: 500px) {
        flex-direction: column;
        align-items: flex-end;
        gap: 10px;
    }

    .pagination-left-section {
        display: flex;
        align-items: center;
        gap: 5px;
    }

    .pagination-right-section {
        display: flex;
        align-items: center;
        gap: 20px;
    }

    .page-counter {
        height: 28px;
        padding: 0 5px;
        font-weight: 400;
        font-size: 12px;
        color: var(--secondary-text-color);
        display: flex;
        align-items: center;
        border-right: 1px solid rgba(0, 0, 0, 0.08);
    }

    .page-button {
        width: 32px;
        height: 32px;
        border-radius: 6px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--secondary-text-color);
        cursor: pointer;

        &:hover:not(:has(.page-button-active)) {
            background: var(--card-background-color);
        }
    }

    .page-button-active {
        background: var(--primary-color) !important;
        color: #fff;
    }

    .page-button-arrow {
        width: auto;
        gap: 10px;
        padding: 0 10px;
    }

    .page-limit {
        font-weight: 500;
        font-size: 14px;
        color: var(--primary-text-color);

        select {
            outline: none;
            border: none;
            cursor: pointer;
        }
    }
}

.select {
    outline: none;
    color: var(--primary-text-color);
    font-weight: 400;
    font-size: 14px;
    height: 32px;
    background: var(--card-background-color);
    padding: 0 10px;
    border-radius: 8px;
    border: 1px solid var(--card-border-color);
}

.checkbox-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;

    input {
        flex-shrink: 0;
        flex-grow: 0;
    }

    label {
        font-weight: 400;
        font-size: 14px;
        color: var(--primary-text-color);
        white-space: nowrap;
    }
}

input[type="checkbox"] {
    appearance: none; /* Убираем стандартный стиль */
    width: 20px;
    height: 20px;
    border: 2px solid var(--secondary-text-color);
    border-radius: 4px;
    cursor: pointer;
    position: relative;
}

input[type="checkbox"]:checked {
    background-color: var(--secondary-text-color); /* Зеленый фон при выборе */
    border-color: var(--secondary-text-color);
}

input[type="checkbox"]:checked::after {
    content: "✓";
    color: white;
    position: absolute;
    left: 4px;
    top: -1px;
    font-size: 12px;
}

.progress-bar {
    position: relative;
    height: 10px;
    width: 100%;
    border-radius: 5px;
    background: #E3E9E9;

    .bar {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        border-radius: 5px;
    }
}


.box {
    display: flex;
    gap: 3px;

    > div {
        background: rgba(0, 0, 0, 0.06);
        display: flex;
        align-items: center;
        justify-content: center;
        height: 40px;
    }

    :nth-child(1) {
        border-radius: 6px 2px 2px 6px;
        width: 21px;
        display: flex;
        align-items: center;
        justify-content: center;

        span {
            color: rgba(0, 0, 0, 0.32);
            font-size: 14px;
            font-weight: 900;
            transform: rotate(270deg);

            @media screen and (max-width: 500px) {
                font-size: 12px;
            }
        }
    }

    :last-child {
        border-radius: 2px 6px 6px 2px;
        width: 37px;
        color: var(--primary-text-color);
        font-size: 14px;
        font-weight: 900;
        @media screen and (max-width: 500px) {
            font-size: 12px;
        }
    }
}

ul, ol {
    padding: 0 0 0 20px;
    li {
        font-size: 14px;
        color: var(--primary-text-color);
        font-weight: 400;
        span {
            font-weight: 700;
        }
    }

    li:not(:last-child) {
        margin-bottom: 5px;
    }
}

.content-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px 0;
    flex: 1;

    @media screen and (max-width: 500px) {
        padding: 20px 10px;
    }

    .title {
        font-weight: 700;
        font-size: 42px;
        color: var(--primary-text-color);

        @media screen and (max-width: 500px) {
            font-size: 24px;
        }
    }
}

.table-with-pagination {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.section-title {
    font-weight: 700;
    font-size: 24px;
    color: var(--primary-text-color);

    @media screen and (max-width: 500px) {
        font-size: 18px;
    }
}

.earth-shake-swiper {
    width: 100%;

    .swiper-slide {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .earth-shake-swiper-button-next, .earth-shake-swiper-button-prev {
        color: var(--secondary-text-color) !important;
        background: rgba(255, 255, 255, 1);
        width: 44px !important;
        height: 44px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 4px 8px 0 #08233029;
    }
    .earth-shake-swiper-button-next::after, .earth-shake-swiper-button-prev::after {
        font-size: 26px !important;
    }
}

#search-block-container {
    position: fixed;
    display: none;
    top: 15px;
    left: 50%;
    transform: translate(-50%, 0);
    z-index: 1002;

    flex-direction: column;
    gap: 2px;

    width: 720px;
    @media screen and (max-width: 720px) {
        width: calc(100% - 30px);
    }

    .search-text-field-wrapper {
        position: relative;

        input {
            width: 100%;
            height: 48px;
            padding: 0 70px 0 15px;
            border-radius: 12px;
            background: var(--card-background-color);
            border: none;
            outline: none;
        }

        .buttons-wrapper {
            position: absolute;
            top: 12px;
            right: 15px;

            > div {
                cursor: pointer;
            }

            div:nth-child(2) {
                margin-top: 4px;
            }

        }
    }

    .search-block-list {
        padding: 3px 0;
        background: var(--card-background-color);
        border-radius: 12px;

        .search-list-item {
            padding: 9px 15px;
            align-items: center;
            cursor: pointer;
            font-weight: 400;
            font-size: 14px;
            color: var(--primary-text-color);

            span {
                font-weight: 600;
            }

            &:hover {
                background: var(--hover-background-color);
            }
        }
    }
}

.modal-background {
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(74, 108, 112, 0.4);
    height: 100vh;
    width: 100%;
    z-index: 1000;
    display: none;
}

.search-no-data {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 30px;
    flex: 1;
    padding: 10px 0;

    .icon-wrapper {
        width: 96px;
        height: 96px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(0, 0, 0, 0.04);
        border-radius: 50%;
    }

    .no-data-text {
        font-weight: 600;
        font-size: 18px;
        color: var(--primary-text-color);
        text-align: center;
    }
}

#earth-shake-modal {

    .swiper {
        height: 187px;
    }

    width: 672px;
    @media screen and (max-width: 500px) {
        width: 100%;
    }


    .modal-content {
        > *:not(:last-child) {
            margin-bottom: 20px;
        }
    }

    .earth-shake-text {
        font-size: 14px;
        color: var(--primary-text-color);
        font-weight: 400;
    }

    .swiper-wrapper {
        height: 187px;

        .swiper-slide {
            img {
                width: 100%;
            }
        }
    }
}

.language-dropdown-opened-mobile {
    top: -70px;
}

#auth-modal {
    width: 360px;

    @media screen and (max-width: 500px) {
        width: 100%;
    }
}

/* Контейнер */
.lang-switcher {
    position: relative;
    display: inline-block;
    font-size: 14px;
    line-height: 1.2;
}

/* если обёрнут в .custom-select */
.lang-switcher.custom-select {
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}

/* Верхняя «кнопка» выбранного языка */
.lang-switcher .header-links-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0; /* убрал отступы, чтобы не было рамки/пилюли */
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    cursor: pointer;
    user-select: none;
}

/* Ховер/актив — без рамки */
.lang-switcher .header-links-item:hover,
.lang-switcher .header-links-item[aria-expanded="true"] {
    background: transparent !important;
    box-shadow: none !important;
    border: 0 !important;
}

/* Фокус */
.lang-switcher .header-links-item:focus,
.lang-switcher .header-links-item:focus-visible {
    outline: none !important;
    box-shadow: none !important;
}

/* Иконки */
.lang-switcher .header-links-item img:first-child,
.lang-switcher .dropdown img {
    width: 18px;
    height: 12px;
    object-fit: cover;
    display: inline-block;
}

/* Стрелка */
.lang-switcher .small_arrow {
    width: 12px;
    height: 12px;
    transition: transform .2s ease;
}
.lang-switcher .header-links-item[aria-expanded="true"] .small_arrow {
    transform: rotate(180deg);
}

/* Дропдаун */
.lang-switcher .dropdown {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    min-width: 140px;
    background: #fff;
    border: 1px solid rgba(0,0,0,.12);
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,.12);
    padding: 6px;
    z-index: 1000;

    display: none; /* скрыт по умолчанию */
}
.lang-switcher .dropdown.is-open { display: block; }

/* Сбросы списка */
.lang-switcher .dropdown,
.lang-switcher .dropdown ul,
.lang-switcher .dropdown li {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Пункты */
.lang-switcher .dropdown li a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    border-radius: 6px;
    text-decoration: none;
    color: #222;
    white-space: nowrap;
}
.lang-switcher .dropdown li a:hover {
    background: #f5f7fb;
}

/* Текст языка */
.lang-switcher .dropdown li span,
.lang-switcher .header-links-item span {
    font-weight: 600;
    letter-spacing: .02em;
    text-transform: uppercase;
}

/* На всякий пожарный: убираем маркер у li внутри админ-бара */
#wpadminbar .lang-switcher .dropdown li {
    list-style-type: none;
}
