.lsm-lang-selector {
    display: inline-block;
    position: relative;
}

.lsm-lang-selector select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: 2px solid #0073aa;
    border-radius: 25px;
    padding: 8px 35px 8px 15px;
    font-size: 1em;
    background-color: white;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%230073aa' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    transition: border-color 0.2s ease-in-out;
}

.lsm-lang-selector select:hover {
    border-color: #00a0d2;
}

.lsm-lang-selector select:focus {
    outline: none;
    border-color: #00a0d2;
    box-shadow: 0 0 0 1px #00a0d2;
}