.lang-selector {
    position: relative;
    display: inline-block;
}
.lang-trigger {
    background: transparent;
    border: none;
    outline: none;
    box-shadow: none;
    -webkit-appearance: none;
    appearance: none;
    width: auto;
    height: auto;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
}
.lang-trigger:hover {
    opacity: 0.8;
}
/* For light backgrounds */
.lang-selector-light .lang-trigger {
    border: none;
}
.lang-selector-light .lang-trigger:hover {
    opacity: 0.8;
}
.lang-dropdown {
    position: absolute;
    top: 42px;
    right: 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
    z-index: 1000;
    min-width: 160px;
    overflow: hidden;
}
.lang-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    cursor: pointer;
    font-size: 14px;
    color: #1a1a2e;
}
.lang-option:hover {
    background: #f0f4ff;
}
