/* Language Toggle Button Styles */

.btn-language {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--text-main);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 500;
}

.btn-language:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(34, 211, 238, 0.2);
}

.btn-language:active {
    transform: translateY(0);
}

.btn-language .flag-icon {
    font-size: 1.2rem;
    line-height: 1;
}

/* Responsive: Hide text on mobile, show only flag */
@media (max-width: 768px) {
    .btn-language span[data-i18n] {
        display: none;
    }

    .btn-language {
        padding: 10px 12px;
        min-width: 44px;
        justify-content: center;
    }
}