#UsersD1
    {
        width:100%;
        box-sizing: border-box;
    }
#UsersD1 table
    {
        width:100%;
    }
#UsersD1 table td
    {
        height: 25px;
        font-weight: 600;
    }
#UsersD1 select, #UsersD1 button
    {
        height: 100%;
        box-shadow: 1px 3px 5px gray;
        border:solid 1px gray;
        border-radius: 4px;
        cursor: pointer;
    }
#UsersD2
    {
        height: calc(100% - 33px);
        border:solid 1px gray;
        border-radius: 5px;
        overflow-y: auto;
        background-color: white;
    }
#UsersD2 table
    {
        width:100%;
        border-spacing: 0;
    }
#UsersD2 table td
    {
        height: 23px;
        border-right:solid 1px gray;
        border-bottom:solid 1px gray;
    }
#UsersD2 table tr td:last-child
    {
        border-right: none;
    }
#UsersD2 table thead
    {
        position: sticky;
        top:0;
        z-index: 3;
        background-color: white;
    }
#UsersD2 table thead td
    {
        text-align: center;
        font-weight: 600;
    }
#UsersD2 table tbody input[type="checkbox"]
    {
        cursor: pointer;
    }
#UsersD2 table tbody tr:hover
    {
        background-color: rgb(228, 228, 185);
    }

