htl.html`<table style="width:100%; border-collapse:collapse; font-size:0.9rem;">
<thead>
<tr style="border-bottom:2px solid #ccc; text-align:left;">
<th style="padding:8px 12px;">Name</th>
<th style="padding:8px 12px;">Institution</th>
<th style="padding:8px 12px;">ORCID</th>
<th style="padding:8px 12px; text-align:center;">Total publications</th>
<th style="padding:8px 12px; text-align:center;">PER publications</th>
</tr>
</thead>
<tbody>
${authors.map((a, i) => htl.html`<tr style="border-bottom:1px solid #eee; background:${i % 2 === 0 ? '#fff' : '#f9f9f9'};">
<td style="padding:8px 12px; font-weight:500;">${a.name}</td>
<td style="padding:8px 12px; color:#444;">${a.institution || ""}</td>
<td style="padding:8px 12px;">
${a.orcid
? htl.html`<a href="https://orcid.org/${a.orcid}" target="_blank"
style="color:#a6ce39; font-family:monospace;">${a.orcid}</a>`
: ""}
</td>
<td style="padding:8px 12px; text-align:center;">${a.pub_count}</td>
<td style="padding:8px 12px; text-align:center;">${a.per_count}</td>
</tr>`)}
</tbody>
</table>`