.tab {
    display: none;
    flex-direction: column;
}
.tab.active-tab {
    display: flex;
}
.tab-link {
    background-color: transparent;
}
.tab-link.active-tab {
    background-color: var(--primary);
    color: var(--white);
}

:root {
    --table-header-color: #333;
    --table-cell-color: #666;
    --table-cell-background: #f0f0f0;
    --table-border-color: #ccc;
  }
  

  .row-group {
    display: flex;
    align-items: center;
  }
  .col-group {
    display: flex;
    flex-direction: column;
  }