/* Div-based table styles */
.table-display {
  display: table;
  width: 100%;
  border-collapse: collapse;
}

.table-header {
  display: table-header-group;
  background-color: var(--bulma-scheme-main-bis);
  font-weight: 600;

  .table-cell {
    border-bottom: 2px solid var(--bulma-border);
    font-weight: 600;
  }
  
}

.table-row {
  display: table-row;

  &.is-striped {
    background-color: var(--bulma-scheme-main-bis);
  }

  .table-cell {
    font-weight: 500;
  }
}

.table-cell {
  display: table-cell;
  padding: 0.75rem;
  border-bottom: 1px solid var(--bulma-border);
  vertical-align: middle;
  text-align: center;
}

.table-footer {
  display: table-footer-group;
  font-weight: 600;

  .table-cell {
    border-bottom: none;
    border-top: 2px solid var(--bulma-border);
  }
}

.table-row-link {
  text-decoration: none;
  color: inherit;
}
