{# 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-head th span {
  width: 100%;
}

.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;
}

/* Custom Table Contents */
.custom-table_flow {
  background-color: #F8F8F8;
  border: 1px solid #D3D3D3;
  border-radius: 12px;
  padding: 24px !important;
}
.c-table-title {
  color: #222;
  font-weight: 600;
  font-size: 20px;
  line-height: 1;
  margin-bottom: 24px;
}
.custom-table_flow {
  flex-flow: column wrap;
}
.c-table-mod {
  border: none !important;
}
.c-table-mod table {
  width: 100%;
}
.c-table-mod .c-table-head {
  background: none !important;
  border: none !important;
}
.c-table-mod table,
.c-table-mod tr,
.c-table-mod td,
.c-table-mod th {
  width: 100%;
  background: none !important;
  border: none !important;
}
.c-table-title {
  color: #222;
  font-weight: 600;
  font-size: 20px;
  line-height: 1;
  margin-bottom: 24px;
}
/* Bottom disclaimer */
.c-table-disc {
  padding: 24px;
  background: #fff;
  border-radius: 12px;
  margin-top: 16px;
  margin-bottom: 16px;
}
.c-table-disc * {
  color: #000;
}
.c-table-disc p {
  font-size: 14px;
}
.c-table-disc p:last-child {
  margin-bottom: 0px;
}
.c-table-btns {
  display: flex;
  gap: 8px;
}
.c-table-btns a {
  font-weight: 500;
  font-size: 14px !important;
  line-height: 100%;
}
@media (max-width: 850px) {
  .dup-table_flow > .container,
  .hhs-footer-mod > .container {
    padding-right: 25px;
    padding-left: 25px;
  }
  .c-table-disc {
    width: 100%;
  }
  .c-table-btns {
    flex-flow: column wrap;
  }
  .c-table-mod {
    overflow-x: auto !important;
    max-width: 100%;
    display: block !important;
  }
  .c-table-mod table {
    width: 480px;
  }
  .c-table-btns a {
    width: 100%;
  }
}