thead {
    background-color: #f6f6f6;

}

tr {
    border: none;
}

th button {
    color: #626262;
    border: none;
    cursor: pointer;
    font: inherit;
    margin: 0;
    justify-content: space-between;
    display: flex;
    align-items: baseline;
    width: 100%;
    background-color: #f0f2f2;
}

th button::after {

    margin-left: 0.5rem;
    margin-right: -.5rem;
}

th button[aria-sort="ascending"]::after {
    content: "▲";
    color: cornflowerblue;
    font-size: 12px;
}

th button[aria-sort="descending"]::after {
    content: "▼";
    color: cornflowerblue;
    font-size: 11px;

}

td {
    padding: 0.5rem .5rem;
    text-align: left;
}


#tblRepresentatives {
    overflow-x: hidden;
    overflow-y: auto;
    max-height: 700px;
    margin-bottom: 7%;
    display: block;
    height: min-content;
    width: min-content;
}

select {
    color: #626262;
    font-size: 0.875em;
    background-color: #fff;
    border: solid 0.5px #c3c3c3;
    border-radius: 8px;
    box-shadow: 2px 2px 8px 0px #62626254;
    display: flex;
    flex-direction: column;
    justify-content: start;
    margin: 6px 5px 6px 0;
    max-width: 175px;
    padding: 5px;
    width: fit-content;
}

#nameSearchContainer{
    display: flex;
    margin-top: 6px;
}

#nameSearch, #repInfoForm input[type="text"], #termInfoForm input[type="text"] {
    color: #626262;
    font-size: 0.875em;
    background-color: #ffffff;
    border: solid 0.5px #c3c3c3;
    border-radius: 8px;
    box-shadow: 2px 2px 8px 0px #62626254;
    padding: 6px;
}