Hi!
I need help with formatting an HTML table.
This is how the result looks right now:

So two things -
First, there's no spacing between the table headers and it's bothering me!
And second, how can I change the font (which is for some strange reason - Time new Roman, instead of Arial)?
This is my current code in Compose action -
<style>
table {
border: 5px solid #1C6EA4;
background-color: #EEEEEE;
width: 100%;
text-align: center;
border-collapse: collapse;
}
table td, table th {
border: 1px solid #AAAAAA;
padding: 3px 2px;
}
table tbody td {
font-size: 16px;
}
table thead {
background: #1C6EA4;
border-bottom: 2px solid #444444;
}
table thead th {
font-size: 20px;
font-weight: bold;
color: #FFFFFF;
border-left: 2px solid #D0E4F5;
}
table thead th:first-child {
border-left: none;
}
</style>
@{body('Create_HTML_table')}
Can anyone help?
Thanks!