.lang_icon {
    width: 20px;
    height: auto;
    vertical-align: middle;
}

#lang-button {
    display: flex;
    align-items: center;
    gap: 6px;
    border: none;
    background: none;
    cursor: pointer;
    padding: 6px 10px;
    border-radius: 20px;
}

#lang-selector {
    position: relative;
}

#lang-dropdown {
    display: none;
    position: absolute;
    top: 110%;
    right: 0;
    min-width: 180px;
    background: #f0f0f0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
    z-index: 2000;
}

#lang-dropdown.open {
    display: block;
}

#lang-dropdown a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    text-decoration: none;
    color: #202020;
}

#lang-dropdown a:hover {
    background: #fff0a0;
}
