.table {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.table .header {
  background-color: #e5e5e5;
  border-radius: 5px;
}

.table .body {
  height: 0;
  flex-grow: 1;
  overflow: auto;
  border-bottom: 1px solid #e5e5e5;
}

.table .body .row {
  height: 50px;
}

.table .body .row .cell {
  border-bottom: 1px solid #e5e5e5;
}

.table .body .row:last-child .cell {
  border-bottom: none;
}

.table .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.table .cell {
  padding: 0.5rem 0.75rem;
  flex-shrink: 0;
}
