Adjusting the height of a cell within a table.
<table>
<tr>
<th style="border: 1px solid black; border-color: #96D4D4; height:5px">Amount1</th>
<td style="border: 1px solid black; border-color: #96D4D4;">50</td>
</tr>
<tr>
<th style="border: 1px solid black; border-color: #96D4D4; height:5px">Amount2</th>
<td style="border: 1px solid black; border-color: #96D4D4;">50</td>
</tr>
<tr>
<th style="border: 1px solid black; border-color: #96D4D4; height:5px">Total</th>
<td style="border: 1px solid black; border-color: #96D4D4;">100</td>
</tr>
</table>
The outcome is displayed below for reference,
https://i.sstatic.net/2VK8i.png
I am looking to decrease the size of the cell border to less than 10px. Although a height of 5px is specified, it is not resulting in reduced size. Any suggestions on how to achieve this would be highly valued.