table_styles = html`<style>
table {
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
border-collapse: collapse;
display: block;
overflow: auto;
white-space: nowrap;
width:${width}px;
min-width:${width}px
}
th, tr:last-child {
background: #F6F6F6;
}
th:nth-child(3),
th:nth-child(4)
{
text-align: right;
}
td:nth-child(3),
td:nth-child(4)
{
font-family: "Pragmata Pro", "Overpass Mono", Consolas, "Courier New", Courier, monospace;
}
td, th {
border: 1px solid #ECECEF;
text-align: left;
padding: 8px;
}
td:first-of-type {
font-weight: 600;
}
</style>
`