.hidden {
    display: none;
}
table {display: table;}
.table-responsive {overflow: auto;}
.table td, .table th {border: none;}

.profile-row{
    border-bottom: 1px solid black !important;
}

.profile-row td:nth-child(2) a{
    font-weight: 400;
}

/* Special styling for listings with photos */
table.with-photos {display: block;}
table.with-photos tbody {display: grid; grid-template-columns: 1fr 1fr;}
table.with-photos tr {display: grid; height: auto; grid-template-columns: auto 1fr; margin: 1rem; padding: 0.5rem 1rem; background: #fff !important; box-shadow: 0 0 10px #888;}
table.with-photos tr:first-child {display: none;}
table.with-photos td {display: block; padding: 5px 0;}
table.with-photos td.profile-thumb {grid-row: 1 / 6;}
table.with-photos td:empty {height: 0;}
table.with-photos td:before {display: none;}
img.profile-thumbnail {
    margin-right: 1rem;
    aspect-ratio: 3/4;
    object-fit: cover;
    max-width: 100px;
    box-shadow: 0px 12px 6px -8px rgba(0,0,0,.25);
    border-radius: 3px;
    border: 2px solid black;
}

@media (max-width: 990px) {
    table.with-photos tbody {grid-template-columns: 1fr;}
    table.with-photos tr {width: auto;}
}