* {
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    background-color: #F1F9EC;
}

.info {
    padding-top: 5vh;
}

.dataVis {
    display: flex;
    max-width: 100%;
    flex-wrap: wrap;
    justify-content: space-between;
}

.item {
  flex: 1 1 80%;
  text-align: center;
  min-width: 200px;
}

.item img {
  width: 100%;
  height: auto;
  max-width: 80%;
}

.rawData {
  width: 100%;
  overflow-x: auto;
}

.rawData table {
  width: 100%;
  border-collapse: collapse;
  table-layout: auto;
}

th:first-child,
td:first-child {
  position: sticky;
  left: 0;
  background-color: #fff;
  z-index: 2;
  border-right: 1px solid #ccc;
}

th:nth-child(2),
td:nth-child(2) {
  position: sticky;
  left: 230px;
  background-color: #fff;
  z-index: 2;
  border-right: 1px solid black;
  min-width: 150px;
}