You can define the CSS class on the containing element's class AND the input tag, like this:
.timesheet-daily-entry-fields-container input {
margin: 10px;
padding: 10px;
display:inline-block;
overflow:hidden
}
That'll save you having to add a class to each input element. To space them out more, increase the margin.