records {
    padding: 25px;
    display: none;
    transition: all 0.5s ease-out;
    animation-name: fadeInOpacity;
    animation-duration: .15s;
    animation-timing-function: steps(cubic-bezier(0.19, 1, 0.22, 1));
}

records.active {
    display: block;
}

records .heading {
    text-align: center;
}

records select {
    display: block;
    min-width: 250px;
    margin-top: -30px;
    margin-bottom: 15px;
    padding: 3px 5px;
    filter: drop-shadow(0px 2px 6px black);
}

records .wrapper {
    filter: drop-shadow(0px 2px 6px black);
}

records .recordsHeader table {
    margin: 0;
}

records .recordsHeader table th {
    width: 14%;
}

records .recordsHeader table th.middle, records .recordsHeader table th.right {
    text-align: center;
}

records .recordsContainer {
    overflow: auto;
    max-height: 60vh;
    background-color: whitesmoke;
}

records .recordsContainer .table {
    margin-bottom: 0;
    background-color: whitesmoke;
}

records .recordsContainer .table tr {
    background-color: whitesmoke;
    transition: all 0.25s linear;
}

records .recordsContainer .table .you {
    background-color: antiquewhite;
}

records .recordsContainer .table .member {
    padding: 0 0.75rem;
}

records .recordsContainer .table .member button {
    margin-left: -12px;
    margin-right: 12px;
    border: none;
    padding: 0;
}

records .recordsContainer .table .member img {
    height: 50px;
    width: 50px;
}

records .recordsContainer .table td {
    width: 14%;
}

records .recordsContainer .table td.middle, records .recordsContainer .table td.right {
    text-align: center;
}