/* Adjust the width and height of the popup form */
.modal-lg modal-dialog {
    width: 80% !important; /* Adjust percentage as needed */
    max-width: 90% !important; /* Set a maximum width */
    height: 90% !important;
}

.modal-content {
    height: 90% !important; /* Adjust height relative to viewport */
    overflow-y: auto; /* Allows scrolling if content overflows */
}