/* Language Switch Styles */
.lang-switch {
    padding: 8px 16px !important;
    background: rgba(139, 92, 246, 0.1) !important;
    border: 1px solid rgba(139, 92, 246, 0.3) !important;
    border-radius: 6px !important;
    color: #a78bfa !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    transition: all 0.3s ease !important;
}

.lang-switch:hover {
    background: rgba(139, 92, 246, 0.2) !important;
    border-color: rgba(139, 92, 246, 0.5) !important;
    color: #c4b5fd !important;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .lang-switch {
        display: block;
        text-align: center;
        margin: 10px 0;
    }
}

