.myTable {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  flex: 1 1 auto;
  position: relative;
  z-index: 1;
}

/* Media Query */
/* =========== */
@media screen and (max-width: 600px) {
  .myTable {
    height: unset;
    min-height: 300px;
  }
}
