/*version=1.00*/
/* Log here
//2020/09/11
// 履歴表示のCSS */

.ui-datepicker {
    z-index: 9999 !important;
}

.table-container {
    position: relative;
    table-layout: fixed;
    height: calc(100vh - 280px);
    min-height: 252px;
    width: 100%;
}

.scroll-table {
    /* width: 300px; */
    overflow-x: auto;
    display: block;
    position: sticky;
    top: 0;
    width: 100%;
}

.scroll-table>thead,
.scroll-table>tbody {
    display: block;
}

.scroll-table>tbody {
    overflow-y: auto;
    overflow-x: hidden;
    height: calc(100vh - 332px);
    min-height: 200px;
}

.scroll-table>tbody>tr>td,
.scroll-table>thead>tr>th {
    min-width: 175px;
    max-width: 175px;
}

.scroll-table>tbody>tr>td {
    padding: 8px;
}

.scroll-table>thead>tr>th {
    text-align: center;
    position: sticky;
    top: 0;
    background: #fcc614;
    color: white;
    height: 2em;
    font-size: 16px;
}

.scroll-table>tbody>tr:nth-child(even) {
    background: gainsboro;
}

.lastcol {
    padding-right: 15px;
}

#headerrow:hover {
    display: table-row;
}