/*version=1.00*/
/* Log here
//2020/09/09   
// 複合グラフ設定画面のスタイル */

.table-container {
    position: relative;
    table-layout: fixed;
    height: calc(100vh - 380px);
    min-height: 256px;
    width: 100%;
}

.scroll-table {
    /* width: 300px; */
    overflow-x: auto;
    display: block;
    position: sticky;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex; /* Prevent tbody overflow table-container */
    flex-direction: column; /* Prevent tbody overflow table-container */
}

.scroll-table>thead,
.scroll-table>tbody {
    display: block;
    width: 100%;
}

.scroll-table>tbody {
    overflow-y: auto;
    overflow-x: hidden;
    /* height: calc(100vh - 366px);
    min-height: 200px; */
    flex: 1; /* Prevent tbody overflow table-container */
}

.scroll-table>tbody>tr>td {
    padding: 5px;
    width: 100%;
    word-break: break-all;
    /* text-align: center; */
}


.scroll-table>tbody>tr {
    display: table;
    width: 100%;
}

.scroll-table>thead>tr {
    display: table !important;
    width: 100%;
}

.scroll-table>tbody>tr>td:nth-child(1),
.scroll-table>thead>tr>th:nth-child(1) {
    width: 8%;
    text-align: center;
}

.scroll-table>tbody>tr>td:nth-child(2),
.scroll-table>thead>tr>th:nth-child(2) {
    min-width: 3%;
    width: 12%;
    text-align: center;
}

.scroll-table>tbody>tr>td:nth-child(3),
.scroll-table>thead>tr>th:nth-child(3) {
    width: 10%;
    text-align: center;
}

.scroll-table>tbody>tr>td:nth-child(4),
.scroll-table>thead>tr>th:nth-child(4) {
    width: 10%;
    text-align: center;
}

.scroll-table>tbody>tr>td:nth-child(5),
.scroll-table>thead>tr>th:nth-child(5) {
    width: 10%;
    text-align: center;
}

.scroll-table>tbody>tr>td:nth-child(6),
.scroll-table>thead>tr>th:nth-child(6) {
    width: 10%;
}

.scroll-table>tbody>tr>td:nth-child(7),
.scroll-table>thead>tr>th:nth-child(7) {
    width: 10%;
}
.scroll-table>tbody>tr>td:nth-child(8),
.scroll-table>thead>tr>th:nth-child(8) {
    width: 10%;
}
.scroll-table>tbody>tr>td:nth-child(9),
.scroll-table>thead>tr>th:nth-child(9) {
    width: 10%;
}
.scroll-table>tbody>tr>td:nth-child(10),
.scroll-table>thead>tr>th:nth-child(10) {
    width: 10%;
}

.scroll-table>thead>tr>th {
    text-align: center;
    background: #399cb4;
    color: white;
    height: 2em;
    font-size: 16px;
    width: 100%;
    padding: 5px;
    word-break: break-all;
}

/* .scroll-table>tbody>tr:nth-child(even) {
    background: gainsboro;
} */
/* 行の色は互い違い */
.scroll-table tbody > tr.odd {
    background: gainsboro;
}
.scroll-table li:nth-child(2n) {
    background: gainsboro;
}
  
.visuallyhidden {
    display: none !important;
}
/* ----------------------------*/

.lastcol {
    padding-right: 15px;
}

select {
    width: 100%;
    padding-left: 0.1rem !important;
}


.scroll-table>tbody>tr:hover {
	background-color: #c4effa;
  }
