Add some padding:
td {
padding: 5px;
}
As far as the even and odd rows not showing up, just remove the space between tr .even and tr .odd. With the space, the CSS selector is looking for a descendant with the even or odd class. Without the space, you're telling it to look for a tr with an even or odd class attached to it.
On another note, it might be better to generate your table programmatically instead of through HTML strings; it's a little easier to maintain:
var $table = jQuery("<table></table>").attr("class", "recommendationsTable");
var $tr = jQuery("<tr></tr>");
$tr.append(jQuery("<th></th>".attr("align", "left").text("Recommendation(s)"));
$table.append($tr);
$tr = jQuery("<tr></tr>").attr("class", "even");
$tr.append(jQuery("<td></td>").text(ruleactionresult1));
$table.append($tr);
...
An even better way would be to put this into a loop:
var rules = ["bbbbb", "aaaa"];
var classes = ["even", "odd"];
var i = 0;
var $table = jQuery("<table></table>").attr("class", "recommendationsTable");
var $tr = jQuery("<tr></tr>");
$tr.append(jQuery("<th></th>".attr("align", "left").text("Recommendation(s)"));
$table.append($tr);
for(var i = 0; i < 5; i++) {
$tr = jQuery("<tr></tr>").attr("class", class[i % 2]);
$tr.append(jQuery("<td></td>").text(rules[i % 2]));
$table.append($tr);
}
Updated fiddle.