In the screenshot above the input width exceeds the column width. How to make it fit perfectly inside a column?
Add this to your CSS file:
td input[type="text"], td select {
-moz-box-sizing: border-box;
box-sizing: border-box;
width: 100%;
}