/* Language Switcher Styles */
.language-switcher {
    margin-left: 1rem;
    position: relative;
    z-index: 1000;
}

.flag-btn {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    background-color: var(--primary-color);
    cursor: pointer;
    transition: all 0.3s ease;
    justify-content: center;
    border: 1px solid var(--primary-color);
    border-radius: 50%;
}

.flag-btn:hover {
    transform: translateY(-2px);    
}

.flag-emoji {
    font-size: 14px;
    font-weight: bold;
    color: var(--white);
}

.flag-text {
    font-weight: 500;
    font-size: 12px;
    color: var(--primary-color);
}

/* Mobile styles */
@media (max-width: 768px) {
    .language-switcher {
        position: relative;
        margin-left: auto;
        margin-right: 10px;
    }
    
    .flag-btn {
        padding: 0.4rem 0.4rem;
        width: 28px;
        height: 28px;
    }
    
    .flag-emoji {
        font-size: 12px;
    }
    
    .flag-text {
        font-size: 10px;
    }
}
