.card .table-responsive {
  background-color: var(--white);
  border: 0 none;
}

.card .table-wrapper {
  overflow: auto;
  width: 100%;
}

.card__button-wrapper {
  display: flex;
  justify-content: end;
}

/* ---------- Header corner rounding ---------- */
.card th:first-child {           /* top-left corner  */
  border-top-left-radius: 6px;
}
.card th:last-child {            /* top-right corner */
  border-top-right-radius: 6px;
}


.card .table {
  font-size: 1.4rem;
  margin-bottom: 0;
}

.card td,
.card th {
  font-weight: 500;
}

.card th {
  color: white;
  background-color: var(--brand-navy);
}

.card th a{
  font-size: 1.5rem;
  font-weight: bold;
}

.card td {
  color: var(--brand-navy);
}

.card td a,
.card th a {
  color: inherit;
  display: block;
  transition: opacity 0.2s ease-in-out;
}

.card td a {
  font-weight: 700;
}

.card td a:hover {
  font-weight: 700;
  color: #005381;
  text-decoration: underline;
}


.card h4 {
  align-items: center;
  display: flex;
  color: var(--brand-navy);
  font-size: 2rem;
  line-height: 1;
}

/* .card h4::before {
  background-color: var(--brand-navy);
  border-radius: 0.4rem;
  content: '';
  display: inline-block;
  height: 3.2rem;
  margin-right: 1.6rem;
  width: 1.6rem;
} */

table a {
  font-size: inherit;
}

.table > tbody > tr > td,
.table > thead > tr > th {
  border-bottom: 0;
  font-weight: 500;
  padding: 2rem 1rem;
  vertical-align: middle;
}

.table > thead > tr > th{
  font-weight: 600;
}

.table > tbody > tr > td {
  border-top: 1px solid var(--brand-gray);
}

.card .entitylist {
  border: 0 none;
}

.card .grid-actions {
  border-bottom: 0 none;
  margin: 0;
  padding: 0.5rem 0;
}

:not(.powerbi) .fa-arrow-down::before {
  content: '\e252';
}
:not(.powerbi) .fa-arrow-up::before {
  content: '\e253';
}

.table .dropdown.action {
  display: none;
}

span.td-color-indicator {
  color: #1a1d1f;
  display: inline-block;
  font-weight: 700;
  font-size: 1.2rem;
  padding: 0.4rem 0.8rem;
  border-radius: 0.4rem;
}

span.td-color-indicator[data-status='danger'] {
  background-color: var(--status-red);
}
span.td-color-indicator[data-status='default'] {
  background-color: var(--brand-gray);
}
span.td-color-indicator[data-status='success'] {
  background-color: var(--status-green);
}
span.td-color-indicator[data-status='warning'] {
  background-color: var(--status-yellow);
}

td,
th {
  word-break: keep-all;
}

td small {
  display: block;
  font-weight: 400;
}

@media (min-width: 1200px) {
  .card .table {
    font-size: 1.6rem;
  }
}