styles = html`
<link href="https://fonts.googleapis.com/css2?family=Lato:wght@400;700;900&display=swap" rel="stylesheet">
<style>
svg * {
font-family: 'Lato', sans-serif;
}
.observablehq * {
font-family: 'Lato', sans-serif;
}
.observablehq table {
table-layout: fixed;
margin: 0;
border-collpase: collapse;
font-size: 0.9rem;
font-family: 'Lato', sans-serif;
}
.observablehq table tr > th:first-child {
pointer-events: none;
}
.observablehq td, .observablehq tr, .observable th {
padding: 0!important;
padding: 0.1rem 0.2rem!important;
}
.observablehq table td {
border-bottom-color: transparent!important;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis:
}
.observablehq table tr>:nth-child(1) * {
pointer-events: none;
visibility: hidden;
width: 0px!important;
max-width: 0px!important;
}
.observablehq table tr>:nth-child(2) {
width: ${widthTableColumnParty}px!important;
max-width: ${widthTableColumnParty}px!important;
}
.observablehq table tr>:nth-child(3) {
width: ${widthTableColumnFalseCases}px!important;
max-width: ${widthTableColumnFalseCases}px!important;
}
.observablehq table tr>:nth-child(4) {
width: ${widthTableColumnTrueCases}px!important;
max-width: ${widthTableColumnTrueCases}px!important;
}
.observablehq table tr>:nth-child(5) {
width: ${widthTableColumnTransparencyIndicator}px!important;
max-width: ${widthTableColumnTransparencyIndicator}px!important;
}
.observablehq table th {
border-bottom-color: transparent!important;
}
.observablehq table thead th {
border-bottom: 4px solid ${colorProjectLight}!important;
box-shadow: none;
white-space: pre-wrap;
}
.observablehq table tr>:last-of-type {
padding-right: 0!important;
}
.observablehq table tr>:not(:first-of-type) {
padding-right: 0!important;
}
</style>
`