Sometimes, adding calendar date pickers to your SeamlessDoc form can cause crowding. This is because the element comes with its own calendar icon. Here is a screenshot:
If your form has space constraints, you can insert custom css to remove this calendar icon. Here is an article explaining how to insert custom css.
The css that you need to add to remove the calendar icon is:
.page.pdf span.date-toggle {
display: none;
}