table {
  border-collapse: collapse;
  width: 100%;
}

th {
  background-color: var(--green);
  color: var(--white);
  border: 1px solid var(--green);
  border-right: 1px solid var(--white);
  padding: 3px;
  font-weight: normal;
  display: none;
}

th:first-child {
  display: table-cell;
}

th:last-child {
  border-right: 1px solid var(--green);
}

.mobScreen {
  display: table-cell;
}

td {
  border: 1px solid var(--green);
  padding: 5px;
  display: block;
}

td:first-child {
  display: table-cell;
}

td:last-child {
  text-align: center;
}

@media (min-width: 600px) {
  .mobScreen {
    display: none;
  }
  .lgeScreen {
    display: table-cell;
  }
  td {
    display: table-cell;
  }
}
