/* Language Switcher Styles */
.language-switcher {
    margin-left: 20px;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    padding-left: 20px;
}

.language-switcher a {
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.language-switcher a:hover {
    color: var(--primary-color, #007bff);
}

.flag-icon {
    font-size: 16px;
    line-height: 1;
}

/* Mobile language switcher */
@media (max-width: 767px) {
    .language-switcher {
        margin: 10px 0;
        border-left: none;
        padding-left: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-top: 10px;
    }
    
    .language-switcher a {
        justify-content: center;
        width: 100%;
    }
}

/* Language switcher in mobile menu */
.mobile-menu .language-switcher {
    margin: 15px 0;
    text-align: center;
}

.mobile-menu .language-switcher a {
    display: inline-flex;
    padding: 8px 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.05);
}

.mobile-menu .language-switcher a:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-color, #007bff);
}
