/* ref: https://codepen.io/michaelquiapos/pen/rIueq */
.qvis-container {
  display: block;
  overflow: hidden;
  white-space: nowrap;
  position: absolute;
  top: 50px;
  left: 15px;
  border: 1px solid rgb(81, 82, 81);
  border-radius: 0.4em;
  padding: 2px 0;
  z-index: 1000;
  background-color: white;
  max-width: 80%;
  overflow-x: scroll;
}
.qvis-row {
  display: flex;
  flex-direction: row;
  margin-bottom: 2px;
  width: 100%;
  height: 18px;
  font-size: 11px;
  font-family: Helvetica, Arial, Sans-Serif;
}
.qvis-row > div {
  width: 18px;
  min-width: 18px;
  margin: 0 1px 0 1px;
  padding: 2px 0;
  text-align: center;
  background-color: white;
  color: white;
}
.qvis-activecell {
  border: 2px solid orangered;
  padding-bottom: 2px;
}
