/* mantém o container da tabela rolável vertical e horizontal */
.table-responsive {
  max-height: 60vh;
  overflow-y: auto;
  overflow-x: auto;
}

/* cabeçalho fixo */
.table-responsive thead th {
  position: sticky;
  top: 0;
  background-color: #f8f9fa;
  z-index: 1;
}

/* força a tabela a preencher 100% do container */
.table-responsive .table {
  width: 100%;
}

/* linha um pouco mais alta */
.table-sm tbody tr {
  height: 1rem;
}