h1, strong {
  font-weight: 400;
}

h1 {
  font-size: 20px;
  font-size: clamp(20px, 3vw, 32px);
}

td img {
  margin-right: 0.75rem;
  min-width: 30px;
  width: 30px;
  height: 30px;
  border-radius: 2px;
}

.table-outer {
  padding: 0;

  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.table-header-politician {
  padding: 2rem;
}

.table-outer table tr.sticky-table-headers > th {
  border: 1px solid var(--color-border-gray);
  border-right: 0;
  background-color: #242d3a;
  font-weight: 400;
  color: var(--color-quiver-white);
}

th.excess {
  min-width: 100px;
}

td span.date {
  color: rgb(215, 215, 215);
  font-weight: 300;
}

.table-outer td {
  padding: 0;
  border-bottom: 1px solid #2c3746;
}

.table-outer td a {
  display: flex;
  color: var(--color-quiver-white);
  padding:1rem;
  white-space: nowrap;
}

.table-outer td strong {
  color: white;
}

.table-outer td span {
  font-size: 12px;
  font-size: clamp(12px, 1.5vw, 14px);
}

.table-outer .table-inner {
  max-height: 100%;
}

.table-inner tbody tr:hover {
  background-color: #1b1f27;
}

.congress-icon-outer.pfp {
  border: 2px solid #B24040;
  margin-right: 1rem;
}

.congress-icon-outer.pfp-header {
  min-width: 90px;
  width: 90px;
  height: 90px;
}

.header-desc {
  font-size: 12px;
  font-size: clamp(12px, 1.75vw, 16px);
  color: rgb(200,200,200);
  padding: .25rem .125rem;
  line-height: 1.5
}

.table-outer .header-desc.alt-desc {
  color: rgb(215,215,215);
  padding: .5rem 2rem 1rem 2rem;
}

span.comp-name {
  max-width: 12ch;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 12px;
  font-size: clamp(12px, 1.5vw, 13px) !important;
  color: rgb(180, 180, 180);
}

@media screen and (max-width: 768px) {
  .table-header-politician {
    padding: 1.25rem;
  }
  .congress-icon-outer.pfp {
    margin-right:.75rem;
  }
  .table-outer .header-desc.alt-desc {
    padding: .5rem 1.25rem 1rem 1.25rem;
  }
  .congress-icon-outer.pfp-header {
    min-width: 60px;
    width: 60px;
    height: 60px;
  }
  .comp-name {
    max-width: 6ch;
  }
}