/* Language Switcher Styles */
.language-switcher {
    position: relative;
    margin-left: 1rem;
    margin-top: -5px;
    display: flex;
    align-items: center;
    height: 100%;
}

.language-flags {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    height: 100%;
}

.flag-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    height: auto;
}

.flag {
    font-size: 1.8rem;
    display: block;
    line-height: 1;
    opacity: 0.7;
    transition: opacity 0.2s ease;
}

.flag-btn:hover .flag {
    opacity: 0.9;
}

.flag-btn.active .flag {
    opacity: 1;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.15));
}

/* Mobile responsive for language switcher */
@media (max-width: 768px) {
    .language-switcher {
        margin-left: 0;
        margin-top: -5px;
        width: 100%;
        justify-content: center;
    }
    
    .language-flags {
        gap: 0.5rem;
        justify-content: center;
    }
    
    .flag {
        font-size: 1.8rem;
    }
    
    .flag-btn.active .flag {
        opacity: 1;
        filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.15));
    }

    .flag-btn:hover .flag {
        opacity: 0.9;
    }
} 