/* ULTIMATE FIX - Disable ALL transitions & animations */
* {
    transition: none !important;
    -webkit-tap-highlight-color: rgba(0,0,0,0) !important;
    animation: none !important;
}

*:active {
    transform: none !important;
}

/* Ensure buttons are clickable */
button, a, [role="button"], .tab-btn, .sub-tab-btn {
    pointer-events: auto !important;
    cursor: pointer !important;
}

