.language-switcher {
    position: relative;
    width: 140px;
}

.language-switcher select {
    width: 100%;
    padding: 10px 35px 10px 15px;
    background: #3D6AB3;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    appearance: none;
    outline: none;
    transition: all 0.3s ease;
}

.language-switcher select:hover {
    background: #2c5599;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 43, 91, 0.2);
}

.language-switcher::after {
    content: "▼";
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    color: white;
    font-size: 10px;
    pointer-events: none;
}

.language-switcher select option {
    background: white;
    color: #333;
    padding: 8px;
}

[dir="rtl"] .language-switcher::after {
    left: 10px;
    right: auto;
}

[dir="ltr"] .language-switcher::after {
    right: 10px;
    left: auto;
}