Таблицы 23/23 100%

вообщем сделал на 100% , гляньте кому не сложно не сильно ли там много говна?

CSS
` body {
width: 350px;
margin: 0;
padding: 0 10px;

font-size: 14px;
font-family: “Arial”, sans-serif;
}

table {
width: 350px;
height: 186px;
border-collapse: collapse;
}

th {
border-top: 1px solid black;
border-bottom: 1px solid black;
background-color: darkcyan;
color: white;
}

td {
width: 33%;
border-bottom: 1px solid lightgray;

}

.cyan {
background-color: lightblue;
}

.yellowcolor {
background-color: lightyellow;
}

.align {
text-align: center;
}

.left {
padding-left: 10px;
text-align: left;
}

.right {
text-align: right;
padding-right: 10px;
}`