$("#checklistModal").on("shown.bs.modal", function () {
var modalBody = $(".modal-body");
var itemCount = $("#checklistBody tr").length;
var maxHeight = Math.min(itemCount * 50, 500); // Max 500px height
modalBody.css("max-height", maxHeight + "px");
});