.lang-select {
    position: relative;
    display: inline-block;
    top: 5px;
}

.lang-current {
    width: 36px;
    height: 24px;
    border-radius: 4px;
    border: 1px solid #ffffff;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
}

.lang-options {
    position: absolute;
    top: 30px;
    right: 0;
    background: #ffffff;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    padding: 2px;
    display: none;
    z-index: 1000;
}

.lang-select.lang-open .lang-options {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.lang-option {
    width: 32px;
    height: 20px;
    border-radius: 3px;
    border: 1px solid #ddd;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
}

.lang-option:hover {
    border-color: #999;
    transform: scale(1.03);
}

