.heatmap-widget .heatmap-container {
  overflow-x: auto;
  margin: 8px 0 6px;
}
.heatmap-widget .heatmap-container canvas {
  display: block;
  cursor: crosshair;
}
.heatmap-widget .heatmap-legend {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 4px;
}
.heatmap-widget .heatmap-legend .legend-label {
  font-size: 11px;
  color: #767676;
}
.heatmap-widget .heatmap-legend .legend-cells {
  display: flex;
  gap: 2px;
}
.heatmap-widget .heatmap-legend .legend-cell {
  width: 11px;
  height: 11px;
  border-radius: 2px;
  display: inline-block;
}
.heatmap-widget .heatmap-legend .legend-cell[data-level="0"] {
  background: #ebedf0;
}
.heatmap-widget .heatmap-legend .legend-cell[data-level="1"] {
  background: #9be9a8;
}
.heatmap-widget .heatmap-legend .legend-cell[data-level="2"] {
  background: #40c463;
}
.heatmap-widget .heatmap-legend .legend-cell[data-level="3"] {
  background: #30a14e;
}
.heatmap-widget .heatmap-legend .legend-cell[data-level="4"] {
  background: #216e39;
}