/* public/css/animations.css */

/* Fade In Animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    animation: fadeIn 0.5s ease-in-out;
}

/* Slide Up Animation */
@keyframes slideUp {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.slide-up {
    animation: slideUp 0.5s ease-in-out;
}

/* Applying Animations */
.modal-content,
.manage-users-section .stat,
.manage-tickets-section .stat,
.message,
.btn {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 0.5s forwards;
}

.message.sent,
.message.received {
    animation: slideUp 0.5s forwards;
}
