/* Custom CSS */
.toast-enter {
    transform: translateY(-100%);
    opacity: 0;
}
.toast-enter-active {
    transform: translateY(0);
    opacity: 1;
    transition: all 300ms ease-in-out;
}

/* Static rendering (No bottom-to-top sliding animations) */
.animate-fade-in-up {
    opacity: 1;
}

.stagger-container > * {
    opacity: 1;
}

/* Global Top App Loader */
#mjm-top-loader {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(to right, #ef4444, #eab308, #ef4444);
    background-size: 200% 100%;
    z-index: 99999;
    width: 0%;
    opacity: 0;
    transition: width 0.4s ease-out, opacity 0.3s ease;
    box-shadow: 0 0 12px rgba(239, 68, 68, 0.8), 0 0 4px rgba(234, 179, 8, 0.6);
    pointer-events: none;
    animation: gradientShift 2s linear infinite;
}

@keyframes gradientShift {
    0% { background-position: 100% 0; }
    100% { background-position: -100% 0; }
}

#mjm-top-loader.active {
    opacity: 1;
}
