/* Fix for glitching during page transitions on mobile
   Removes conflicting CSS transitions that interfere with animations */

@media (max-width: 820px) {
    [data-view] { 
        transition: none !important; /* Override to prevent conflict with view animations */
    }
}
