/* Emergency fix for translate button not being clickable */
#translate-btn {
    position: relative !important;
    z-index: 1000 !important;
    pointer-events: auto !important;
}

#translate-btn:disabled {
    pointer-events: none !important;
    opacity: 0.6;
}

/* Ensure the button container doesn't block clicks */
.language-section {
    position: relative;
    z-index: 100;
}

/* Make sure no pseudo-elements are blocking the button */
#translate-btn::before,
#translate-btn::after {
    pointer-events: none !important;
}