html,
body {
  margin: 0;
  padding: 0;
  text-align: center;
  font-family: "Roboto";
  cursor: default;
}

svg {
  display: inline-block;
  height: calc(100vh - 6em);
  max-width: 100%;
  width: auto;
}

svg g path {
  fill: rgba(0, 0, 0, 0.08);
}

/* svg g path.selected {
  fill: rgb(152, 205, 255);
} */
svg g path.hovered,
svg g path:hover {
  cursor: pointer;
  fill: rgb(0, 132, 255);
}

ul {
  margin: 0;
  padding: 0;
}

ul > li {
  padding: 0.5em 1em;
  cursor: pointer;
  list-style: none;
  border-radius: 0.5em;
  white-space: nowrap;
}

/* ul > li.hovered, */
ul > li:hover {
  background-color: rgb(0, 132, 255);
  color: white;
  text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.5);
  /* box-shadow: 0 1px 5px rgba(0,0,0,0.5); */
}

table {
  text-align: left;
  display: inline-block;
  display: inline-table;
  border-spacing: 1em;
}

th {
  font-weight: normal;
  font-size: 200%;
  text-align: center;
}

.title {
  color: rgb(0, 96, 185);
  font-weight: 600;
  font-size: 105%;
  padding: 0.5rem 1rem;
  margin: 0.5rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

@media (max-width: 599px) {
  tr > td:first-child {
    display: none;
  }
}

@media (prefers-color-scheme: dark) {
  html,
  body {
    background-color: #121212;
    color: white;
  }
  svg g path {
    fill: rgba(255, 255, 255, 0.08);
    stroke: rgb(0, 90, 173);
  }
  .title {
    border-bottom-color: rgba(255, 255, 255, 0.5);
  }
}
