Currently, I am in the process of creating a table that contains various forms and buttons within the cells. However, there seems to be excess space between the buttons which is giving the appearance of the form being too wide. I have been attempting to diagnose the issue but haven't been able to pinpoint the exact cause. You can view the problem on jsfiddle, along with a screenshot below for reference.
https://i.sstatic.net/7C39D.png
In each cell, my layout consists of forms structured like this:
<td>
<form>
<button>
test
</button>
</form>
</td>
I'm curious as to what CSS techniques or adjustments I should implement in order to reduce the excessive spacing between the buttons?