Put CSS in the Styling section of the note type. What you could do is assign a classname, and style over that:
In your field:
<table class="mytable">...
</table>
In your styling
.mytable {
width: 100%;
}
.mytable td {
text-align: left;
}
Table editing will probably be implemented at some point.