.language-switcher {
    position: relative;
    display: inline-block;
    margin-left: 15px;
}

.language-switcher select {
    padding: 5px 10px;
    border: 1px solid #ddd;
    background: white;
    cursor: pointer;
    border-radius: 3px;
    transition: all 0.3s ease;
    font-size: 14px;
    color: #333;
}

.language-switcher select:hover {
    border-color: #007bff;
}

.language-switcher select:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 2px rgba(0,123,255,0.25);
}

/* RTL Support */
[dir="rtl"] .language-switcher {
    margin-left: 0;
    margin-right: 15px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .language-switcher select {
        padding: 3px 8px;
        font-size: 12px;
    }
} 