.dataTables_filter {
  display: flex;
  justify-content: end;
}

/* Targets search label - which surrounds search input */
.dataTables_filter label {
  align-items: center;
  column-gap: 1rem;
  display: flex;
}

.dataTables_paginate {
  column-gap: 1rem;
  display: flex;
  padding: 1rem 0;
}

/* Targets wrapper surrounding numbers in pagination */
.dataTables_paginate > span {
  display: flex;
  column-gap: 1rem;
}
/* Targets numbers in the dataTables pagination element */
.dataTables_paginate > span a {
  padding: 0.8rem 1rem;
}

.paginate_button.disabled {
  cursor: not-allowed;
  opacity: 0.7;
}

.paginate_button {
  align-items: center;
  cursor: pointer;
  display: flex;
  font-weight: 700;
  justify-content: center;
  line-height: 1;
}

.paginate_button.current {
  background-color: var(--brand-navy);
  border-radius: 0.4rem;
  color: var(--white);
}

.dataTable th.sorting {
  cursor: pointer;
  padding-right: 26px;
  position: relative;
}
.dataTable th.sorting::after {
  content: '▼'/'';
  top: calc(50% + 1px);
}
.dataTable th.sorting::before {
  bottom: calc(50% + 1px);
  content: '▲'/'';
}

.dataTable th.sorting::after,
.dataTable th.sorting::before {
  display: block;
  font-size: 0.8em;
  line-height: 9px;
  opacity: 0.2;
  position: absolute;
  right: 1rem;
}

table.dataTable th.sorting_asc::before,
table.dataTable th.sorting_desc::after {
  opacity: 0.7;
}

.card td a.table__icon-link {
  display: inline;
  margin-right: 0.5rem;
}


table.dataTable.dtr-inline.collapsed tbody tr td.control {
  background-color: transparent !important;
}

table.dataTable.no-footer {
  border-bottom: none !important;
}

.data-table tbody tr:last-child td {
  border-bottom: none !important;
}

table.dataTable.stripe tbody tr.odd > *,
table.dataTable.display.stripe tbody tr.odd > * {
  background-color: transparent !important;
}