/* ----- ESTILO GENERAL DEL SELECT ----- */
.lang-switch {
    width: 100%;
    max-width: 170px;
    padding: 6px 36px 6px 12px;
    background: #fff;
    border: 1px solid #aaa;
    border-radius: 4px;
    font-size: 14px;
    color: #444;
    appearance: none;
    cursor: pointer;
    outline: none;
    line-height: 1.4;

    /* Flecha estilo Select2 */
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg width='16' height='16' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 6l4 4 4-4' stroke='%23666' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
}

/* ----- HOVER COMO SELECT2 ----- */
.lang-switch:hover {
    border-color: #888;
}

/* ----- FOCUS COMO SELECT2 ----- */
.lang-switch:focus {
    border-color: #5b9dd9;
    box-shadow: 0 0 0 1px #5b9dd9;
}

/* ----- RESPONSIVE ----- */
@media (max-width: 480px) {
    .lang-switch {
        max-width: 130px;
        padding: 6px 32px 6px 10px;
        font-size: 13px;
    }
}
