#NavContent2
    {
        width:100%;
        height:100%;
        box-sizing: border-box;
        border:solid 1px transparent;
        padding-top:5px;
        display: flex;
        flex-direction: column;
    }
#NavContent2D1
    {
        width: 30%;
        height:30px;
        margin-top: 5px;
        box-sizing: border-box;
    }
#NavContent2D1 input[type="text"]
    {
        border:solid 1px gray;
        border-radius: 5px;
        outline: none;
    }
#NavContent2D2
    {
        flex-grow: 1;
        width: 100%;
        height:calc(100% - 35px);
        margin-top: 3px;
        box-sizing: border-box;
        border:solid 1px gray;
        border-radius: 5px;
        background-color: white;
        box-shadow: 1px 3px 5px gray;
        background-color: white;
        overflow: auto;
    }
#NavContent2D2T1
    {
        border-spacing: 0;
        width: 100%;
    }
#NavContent2D2T1 td
    {
        height: 23px;
        border-right:solid 1px rgb(228, 226, 226);
        border-bottom: solid 1px gray;
        font-size: 1rem;
    }
#NavContent2D2T1 input[type="text"], #NavContent2D2T1 select
    {
        width:100%;
        height:100%;
        border:solid 1px gray;
        border-radius: 4px;
        outline: none;
    }
#NavContent2D2T1 button
    {
        width:100%;
        height:100%;
        cursor: pointer;
    }

#NavContent2D2T1 thead
    {
        position: sticky;
        top:0;
        background-color: white;
        z-index: 3;
    }
#NavContent2D2T1 thead td
    {
        text-align: center;
        font-weight: 800;
    }
#NavContent2D2T1 tbody tr:hover
    {
        background-color: bisque;
    }
