/* wwwroot/css/alert-modal.css */
#alertModalContent.animated-modal-content {
    animation-name: animatetop;
    animation-duration: 0.3s;
    animation-timing-function: ease-out;
}

@keyframes animatetop {
    from {
        transform: translateY(-30px) scale(0.95);
        opacity: 0;
    }
    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}
