style = html`
<link href="https://fonts.googleapis.com/css2?family=VT323&display=swap" rel="stylesheet">
<style>
.vtable {
font-family: "VT323", monospace;
font-size: 18px;
line-height: 1;
color: lime;
background-color: black;
}
.vrow {
width: 100%;
overflow: hidden;
}
.vrow-inner {
display: grid;
width: 100%;
overflow: hidden;
align-items: center;
}
.vrow-header {
overflow-y: scroll;
width: 100%;
position: relative;
scrollbar-width: none;
}
.vrow-header .vrow-inner {
background-color: black;
border-bottom: 1px dotted #999;
}
.vrow-inner span {
display: block;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
</style>`