{# 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;
}
.linkPrimary {
    display: flex;
    position: relative;
    color: #fff;
    text-decoration: none;
    background-color: #00424f;
    padding: 12px 25px;
    border-radius: 30px;
    font-size: 16px;
    flex-direction: row;
    align-content: center;
    justify-content: space-between;
    align-items: center;
    transition: transform 0.1s ease;
        gap: 15px;
}

.linkPrimary:hover {
    transform: scale(1.2);
}
.linkPrimary > img {
    display: block;
    position: relative;
    width: 35px;
}
  @media (max-width: 768px) {
   .linkPrimary {
      padding: 10px 25px;
      gap: 10px;
   }
  }