.name-list-container {
  display: flex;
  flex-direction: row;
    flex-wrap: wrap;
}


.name-list {
    margin-right: 3rem;
}

.top-list-table {
    border-collapse: collapse;
    margin: 1rem;
    min-width: 400px;
}

.top-list-table th {
  padding: 1rem;
  border-bottom: 2px solid #ddd;
}

.top-list-table tr {
  border-bottom: 1px solid #ddd;
}

.name_text {
    font-size: larger;
    max-width: 300px;
}

.unique_desc {
    color: var(--font-color);
    margin-top: 0.5rem;
    font-size: 1.2rem;
    text-align: center;
    font-weight: lighter;
}

.per_text {
    font-size: smaller;
    text-align: end;
}

.per_header {
    text-align: end;
}

.per_headerl {
    text-align: left;
}

.header_ul {
  column-width: 20px;
}


.uniqueh1 {
    margin-top: 1rem;
    margin-left: 1rem;
    color: var(--color-brand);
    font-size: 1.8rem;
    text-align: center;
    line-height: 2rem;
}

.uniqueh2 {
    color: var(--color-brand);
    margin-top: 2rem;
    margin-left: 1rem;
    font-size: 1.4rem;
    text-align: left;
    line-height: 1.6rem;
    font-weight: lighter;
}

.uniqueh3 {
    color: gray;
    margin-top: 1rem;
    font-size: 1rem;
    text-align: center;
    line-height: 1rem;
    font-weight: lighter;
}

.footnote {
    color: var(--font-color);
    margin-top: 0.5rem;
    font-size: small;
    font-weight: lighter;
}

@media (max-width: 800px) {
  .name-list-container {
    flex-direction: column;
  }
    .top-list-table {
        min-width: 150px;
        margin: 0.2rem;
    }

    .top-list-table th {
        padding: .2rem;
    }

}

