Помогите пож-ста, что не так?

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Испытание: итоговая таблица</title>
</head>
<body>
<h1>Итоговая таблица</h1>
<table>
<tr>
<th class="cell-1">Город</th>
<th class="cell-2">Посещений</th>
<th class="cell-4">%</th>
</tr>
<tr>
<td> СПб</td>
<td class="cell-3">199</td>
<td class="cell-5">65.12</td>
</tr>
<tr class="row-1">
<td> Москва</td>
<td class="cell-3">69</td>
<td class="cell-5">21.3</td>
</tr>
<tr>
<td>Киев</td>
<td class="cell-3">5</td>
<td class="cell-5">8</td>
</tr>
<tr class='row-1'>
<td colspan="2">Посещений за весь период</td>
<td class="cell-5">273</td>
</tr>
</table>
</body>
</html>

body {
width: 350px;
margin: 0;
padding: 0 10px;
font-size: 14px;
font-family: Arial, sans-serif;
}
table {
border-collapse: collapse;
width: 350px;
height: 170px;
}
td {
border: 1px solid lightgray;
padding-top: 5px;
padding-left: 5px;
padding-bottom: 5px;
padding-right: 5px;
border-right: white;
border-left: white;
color: solid black;
}
th {
border-top: 1px solid black;
border-bottom: 1px solid black;
padding-bottom: px;
padding-top: px;
height: 35px;
}
.cell-1 {
background-color: darkcyan;
color: white;
text-align: left;
padding-left: 10px;
width: 33%;

}
.cell-2 {
background-color: lightblue;
color: white;
vertical-align: middle;
width: 33%;

}
.row-1 {
background-color: lightyellow;
}
.cell-3 {
text-align: center;
}
.cell-4 {
background-color: darkcyan;
color: white;
text-align: right;
padding-right: 10px;
width: 33%;

}
.cell-5 {
text-align: right;
}

Что-то не доделано )

Попробуйте отступы у ячеек 10px.