@font-face {
  font-family: "IBM Plex Sans";
  src: url(fonts/IBMPlexSans-Regular.otf);
}
@font-face {
  font-family: "IBM Plex Sans";
  src: url(fonts/IBMPlexSans-Bold.otf);
  font-weight: bold;
}

body {
  font-family: "IBM Plex Sans";
}
#dashboard {
  display: flex;
  flex-direction: row;
  height: 100%;
}

#controls {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  /* items */
  /* flex: 0 0 130px; */
  h2 {
    margin: 1ex 1em 1ex 0;
  }
  span {
    margin: 0 1em;
    input {
      margin-right: 0.25em;
    }
    input[type="range"] {
      width: 6em;
    }
  }
}

#graphics {
  height: 100%;
  overflow-y: scroll;
  flex: 2 0 1200px;
  margin: 16px;
}

#magnifier {
  flex: 1 0 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 600px;
  overflow-y: scroll;
  img {
    max-width: 400px;
    max-height: 400px;
  }
  table {
    overflow-x: scoll;
    td:nth-child(3),
    td:nth-child(4) {
      text-align: right;
    }
  }
  table,
  th,
  td {
    border: 1px solid black;
    border-collapse: collapse;
  }

  th,
  td {
    padding-left: 0.5em;
    padding-right: 0.5em;
  }
}
