/* SAL Animation Library - DISABLED */
/* All animations disabled to ensure content visibility */

[data-sal] {
    /* Force all elements to be visible and in their normal state */
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    animation: none !important;
}

/* Ensure all SAL elements are visible by default */
[data-sal|=fade],
[data-sal|=slide],
[data-sal|=zoom],
[data-sal|=flip] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
}

body.sal-disabled [data-sal] {
    opacity: 1 !important;
    transform: none !important;
}

/* Force visibility for any element that might be hidden by SAL */
.sal-animate,
[data-sal].sal-animate {
    opacity: 1 !important;
    transform: none !important;
}