﻿div.adminTableBox {
    height: 720px;
    overflow-y: scroll;
    position: relative;
}

table.adminTable {
    table-layout: auto;
    width: 100%;
    
}

table.adminTable > thead > tr > th {
    border: 1px solid gray;
    background-color: lightgray;
    width: fit-content;
    max-width: 180px;
    position: sticky;
    z-index: 0;
    top: 0;
}

table.adminTable > thead {
    position: sticky;
    top: 0;
}

table.adminTable > thead > tr > th.bookend-th {
    max-width: 200px;
    width: fit-content;
}

table.adminTable > tbody > tr > td {
    border: 1px solid gray;
    width: fit-content;
    max-width: 180px;
    font-size: 15px
}

table.adminTable > tbody > tr > td.bookend {
    max-width: 200px;
    width: fit-content;
}




