.section-table .table {
  width: 100%;
  vertical-align: top;
  border-top: var(--nexo-border-width) solid var(--nexo-border-color);
}
.section-table .table > :not(caption) > * > * {
  /* Target all td and th */
  position: relative;
  padding: 0.5rem;
  min-width: min(40vw, 10rem);
  width: 1%;
  border-bottom: var(--nexo-border-width) solid var(--nexo-border-color);
}
.section-table .table > tbody {
  vertical-align: inherit;
}
.section-table .table > thead {
  vertical-align: bottom;
}

.section-table .table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.section-table .table-link {
  transition: background-color 0.3s ease;
}
.section-table .table-link:hover {
  background-color: transparent;
  background-color: color-mix(in srgb, currentColor, transparent 95%);
}
