/* event-save-animation.css */

/* Own scrim — mirrors focus-mode::before from colorpicker.css exactly,
   but on our own body class so no conflict with colorpicker state. */
body.esa-active::before {
    content: '';
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    z-index: 4;
    pointer-events: none;
    transition: none;
}

/* Fade out */
body.esa-fading::before {
    opacity: 0 !important;
    transition: opacity 350ms ease !important;
}
