/* Confirm Dialog Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.confirm-overlay {
    animation: fadeIn 0.3s ease-out;
}

.confirm-dialog {
    animation: slideUp 0.3s ease-out;
}
