.language-selector {
    margin-right: 15px;
}

.language-btn {
    background-color: #45e169;
    color: white;
    font-weight: bold;
    padding: 8px 15px;
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 2px solid #45e169;
}

.language-btn:hover {
    background-color: white;
    color: #45e169;
    border-color: #45e169;
}

/* Make the language switcher more prominent */
.language-btn i {
    font-size: 16px;
}

.language-btn span {
    font-size: 14px;
}

/* RTL specific styles */
html[dir="rtl"] .language-selector {
    margin-right: 0;
    margin-left: 15px;
}

/* Animation effect on hover */
.language-btn:hover {
    transform: scale(1.05);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .language-btn {
        padding: 6px 12px;
    }
    
    .language-btn i {
        font-size: 14px;
    }
    
    .language-btn span {
        font-size: 12px;
    }
}
