Presuming the below markdown card and respective code, how do I change the timedate timestamp font size/style ONLY?
type: markdown
style: |
ha-card {
font-size: 18px;
}
content: |
<div class="tg-wrap">
<table width=100%>
<tbody>
<tr>
<td><ha-icon icon="mdi:bell"></ha-icon> {{ states('input_text.notification_1') }}</td>
<td style="text-align:right;">{{ (states('input_datetime.notification_1_timestamp') | as_datetime).strftime('%I:%M:%S%p %m/%d/%y') }}</td>
</tr>
<tr>
<td><ha-icon icon="mdi:bell"></ha-icon> {{ states('input_text.notification_2') }}</td>
<td style="text-align:right;">{{ (states('input_datetime.notification_2_timestamp') | as_datetime).strftime('%I:%M:%S%p %m/%d/%y') }}</td>
</tr>
<tr>
<td><ha-icon icon="mdi:bell"></ha-icon> {{ states('input_text.notification_3') }}</td>
<td style="text-align:right;">{{ (states('input_datetime.notification_3_timestamp') | as_datetime).strftime('%I:%M:%S%p %m/%d/%y') }}</td>
</tr>
</tbody>
</table>
</div>