/*------------------------------*/
/* Icons */
/*------------------------------*/
.table-icon {
    display: table-cell !important;
    cursor: pointer;
    margin: 0 0.3rem;
}
    .table-icon:hover {
        color: var(--gold);
    }



/*------------------------------*/
/* Table Type 1 */
/*------------------------------*/
.table-1 {
    border-collapse: collapse;
    margin: 0 2rem 1rem 2rem;
    display: block;
    max-width: -moz-fit-content;
    max-width: fit-content;
    overflow-x: auto;
    white-space: nowrap;
}

.table-1 tr td {
    padding: 0.3rem 0.5rem;
    text-align: center;
}

.table-1 tr td.empty-row {
    border-left: none;
    border-right: none;
    background-color: #FFFFFF;
    height: calc(1ch + 0.6rem);
}

.table-1 tr th {
    padding: 0.3rem 0.5rem;
    border-bottom: 1px #919191 solid;
    background-color: #e9e9e9;
}

.table-1 tr:nth-child(odd) {
    background-color: #f7f7f7;
}

.table-1-total {
    border-top: 1px #919191 solid !important;
    background-color: #FFFFFF;
}

@media print {
    .table-1 {
        margin: 0 2rem 0 2rem;
    }
    .table-1-input {
        background-color: inherit;
        border: none;
    }

    .table-1-secHead {
        text-align: left;
        font-size: 1.1rem;
        font-weight: bold;
        border-top: hidden !important;
        border-left: hidden !important;
        border-right: hidden !important;
        padding: 0 !important;
        padding-bottom: 0.5rem !important;
    }
}




/*------------------------------*/
/* Table Type 2 */
/*------------------------------*/
.table-2 {
    border-collapse: collapse;
    margin: 0 2rem 1rem 2rem;
    display: block;
    max-width: -moz-fit-content;
    max-width: fit-content;
    overflow-x: auto;
    white-space: nowrap;
}

.table-2 tr td {
    padding: 0.3rem 0.5rem;
    text-align: center;
    border-left: 1px #919191 solid;
    border-right: 1px #919191 solid;
}
.table-2 tr th {
    padding: 0.3rem 0.5rem;
    border-bottom: 2px #919191 solid;
    background-color: #e9e9e9;
    border-left: 1px #919191 solid;
    border-right: 1px #919191 solid;
}
.table-2 tr:nth-child(odd) {
    background-color: #f7f7f7;
}

.table-2 tr th.char5 {
    min-width: 5ch;
}

.table-2-total {
    border-top: 1px #919191 solid !important;
    background-color: #FFFFFF;
}

@media print {
    .table-2 {
        margin: 0 2rem 0 2rem;
    }
    .table-2-input {
        background-color: inherit;
        border: none;
    }
}




/*------------------------------*/
/* Table Type 3 */
/*------------------------------*/
.table-3 {
    border-collapse: collapse;
    margin: 0 2rem 1rem 2rem;
    display: block;
    max-width: -moz-fit-content;
    max-width: fit-content;
    overflow-x: auto;
    white-space: nowrap;
    background-color: #f7f7f7;
    padding: 2rem;
    border-radius: 0.3rem;
    border: #e9e9e9 solid 1px;
}

.table-3 tr td {
    padding: 0.3rem 1.5rem;
    text-align: center;
}
.table-3 tr {
    border-bottom: #919191 solid 1px;
}
    .table-3 tr:last-child {
        border-bottom: none;
    }

.table-3 tr td.empty-row {
    border-left: none;
    border-right: none;
    background-color: #FFFFFF;
    height: calc(1ch + 0.6rem);
}

.table-3 tr th {
    padding: 0.3rem 0.5rem;
    border-bottom: 1px #919191 solid;
    background-color: #e9e9e9;
}

@media print {
    .table-3 {
        margin: 0 2rem 0 2rem;
    }
    .table-3-input {
        background-color: inherit;
        border: none;
    }

    .table-3-secHead {
        text-align: left;
        font-size: 1.1rem;
        font-weight: bold;
        border-top: hidden !important;
        border-left: hidden !important;
        border-right: hidden !important;
        padding: 0 !important;
        padding-bottom: 0.5rem !important;
    }
}