table {
  display: grid;
  border-collapse: collapse;
  min-width: 100%;
  grid-template-columns: 
    minmax(50px, 1fr)
    minmax(50px, 1fr)
}

thead,
tbody,
tr {
  display: contents;
}

th,
td {
  padding: 15px;
  text-overflow: ellipsis;
  text-align: left;
  align-items: center;
  display: flex;
  word-break: break-word;
}

th {
  position: sticky;
  top: 0;
  height: 3rem;
  z-index: 99;
  background: white;
  text-align: left;
  align-items: center;
  display: flex;
}

.wrapper-styles {
  overflow-y: auto;
}
