{# Base table styling #}
.c-table-mod table {
  border-collapse: collapse;
  width: max-content;
}

{# Align headers and remove bold styling #}
.c-table-mod th {
  font-weight: normal;
  text-align: left;
}
.c-table-mod table tbody tr {
 padding: 0; 
}

{# Use flex layout for table structure #}
.c-table-mod thead,
.c-table-mod tbody,
.c-table-mod tr,
.c-table-mod tbody tr,
.c-table-mod tbody th {
  display: flex;
}

{# Flex columns #}
.c-table-mod td,
.c-table-mod th {
  flex: 1 0 auto;
  padding: .625em;
}

.td-content-block {
  flex: 1;                
  justify-content: space-between; 
  box-sizing: border-box;
  min-width: 0;           
}

{# Scrollbar track with transparent border to simulate padding #}
.c-table-mod::-webkit-scrollbar-track {
  background: transparent;
  border: 3px solid transparent;
}

{# Scrollbar thumb styling #}
.c-table-mod::-webkit-scrollbar-thumb {
  border-radius: 10px;
}
