styles = html`
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Lato:wght@400;700;900&display=swap" rel="stylesheet">
<style>
svg * {
font-family: 'Lato', sans-serif;
}
.cell {
pointer-events: all;
cursor: pointer;
}
text {
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
pointer-events: none;
}
.cellTooltip {
display: block;
position: absolute;
z-index: 300;
visibility: hidden;
width: 200px;
max-width: 320px;
margin: 0;
padding: 0.4rem;
background: rgba(255, 255, 255, 0.9);
color: black;
box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.2);
font-family: 'Lato', sans-serif;
font-size: 11px;
text-align: center;
}
.tooltip-title {
color: "blue";
font-size: 14px
}
</style>
`