.button-1 {
    padding: 0.5rem 0;
    border-radius: 0.375rem;
    transition: 0.2s ease-in-out;
    width: 100%;
}

.button-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    padding-left: 1rem;
    padding-right: 1rem;
    border-radius: 0.25rem;
    transition: 0.2s ease-in-out;
    min-width: 150px;
    padding: 6px 16px;
    border-radius: 4px;
    margin: 10px;
    max-height: 35px;
}

.label-2 {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.label-3 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    padding-left: 1rem;
    padding-right: 1rem;
    border-radius: 0.25rem;
    transition: 0.2s ease-in-out;
    min-width: 200px;
    padding: 6px 16px;
    border-radius: 4px;
    margin: 10px;
    text-align: left;
}

.labeledField-1 {
    width: 100%;
}

.inputField-2 {
    border: none;
    border-radius: 0.25rem;
    padding: 0.5rem;
    transition: 0.2s ease;
    box-shadow: 0 0 0 0.2px;
    height: 35px;
    width: 200px;
    min-width: 200px;
    max-width: 200px;
}

.inputField-3 {
    border: none;
    border-radius: 0.25rem;
    padding: 0.5rem;
    transition: 0.2s ease;
    box-shadow: 0 0 0 0.2px;
    font-size: 16px;
    height: 35px;
    width: 100%;
}

.inputField-4 {
    border: none;
    border-radius: 0.25rem;
    padding: 0.5rem;
    transition: 0.2s ease;
    box-shadow: 0 0 0 0.2px;
    height: 35px;
    width: 100%;
}

.inputField-2,
.inputField-3,
.inputField-4,
.inputField-6,
.inputField-7,
.inputField-8 {
    text-align: left;
}

.action-button-1 {
    padding: 0.3rem;
    border-radius: 0.25rem;
    transition: all 200ms ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 60px;
    max-width: 60px;
    min-width: 60px;
}

.trnEditButtonAlign {
    width: 100%;
    display: flex;
    gap: 1rem;
}

@media (max-width: 650px) {
    .trnEditButtonAlign {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .inputField-6,
    .inputField-7,
    .inputField-8 {
        border: none;
        border-radius: 0.25rem;
        padding: 0.5rem;
        transition: 0.2s ease;
        box-shadow: 0 0 0 0.2px;
        text-align: center;
        height: 35px;
        width: 100%;
        margin-top: 5px;
    }
}

@media (min-width: 651px) and (max-width: 1280px) {
    .inputField-6,
    .inputField-7,
    .inputField-8 {
        border: none;
        border-radius: 0.25rem;
        padding: 0.5rem;
        transition: 0.2s ease;
        box-shadow: 0 0 0 0.2px;
        text-align: center;
        height: 35px;
    }

    .inputField-6 {
        width: 90px;
    }

    .inputField-7 {
        width: 150px;
    }

    .inputField-8 {
        width: 240px;
    }
}

@media (min-width: 1281px) {
    .inputField-6,
    .inputField-7,
    .inputField-8 {
        border: none;
        border-radius: 0.25rem;
        padding: 0.5rem;
        transition: 0.2s ease;
        box-shadow: 0 0 0 0.2px;
        text-align: center;
        height: 35px;
    }

    .inputField-6 {
        width: 100%;
    }

    .inputField-7 {
        width: 100%;
    }

    .inputField-8 {
        width: 100%;
    }
}

/* TRNSearch Table */

.table-container-1 { /* trnsearch table container */
    width: 100%;
    height: 60vh;
    overflow: hidden;
    box-sizing: border-box;
    margin-bottom: 50px;
}

.table-1 { /* trnsearch table */
    overflow-x: hidden;
    overflow-y: hidden;
    max-height: 600px;
}

.table-body-1 { /* trnsearch table body */
    overflow-x: hidden;
    overflow-y: auto;
    height: 60vh;
}

.table-row-1 { /* table row for TrnSearch, Report, SubAccountSearch */
    margin-left: 10px;
    margin-right: 10px;
    box-shadow: 0px 1px 0px rgba(207, 207, 207, 0.2);
}

.table-cell-1 { /* heade/body row cell for any column */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px;
    gap: 1rem;
}

.table-cell-1-p { /* table cell text */
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: start;
    align-items: center;
    padding: 8px;
    margin: 0px 10px;
}

/* WebKit Browsers (Chrome, Edge, Safari) */
.table-body-1::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 10px;
}

.table-body-1::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
}

    .table-body-1::-webkit-scrollbar-thumb:hover {
        background: #555;
    }

/* Remove scrollbar corner (where horizontal and vertical scrollbars meet) */
.table-body-1::-webkit-scrollbar-corner {
    background: transparent;
}

/* Firefox */
.table-body-1 {
    scrollbar-width: thin;
    scrollbar-color: #888 #f0f0f0;
}

/* Report Table */

.table-container-2 { /* Report table container */
    width: 100%;
    height: 60vh;
    overflow: hidden;
    box-sizing: border-box;
    margin-bottom: 50px;
}

.table-2 { /* Report table */
    overflow-x: hidden;
    overflow-y: hidden;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
}

.table-header-2 { /* Report table header */
    display: flex;
    flex-direction: row;
    width: 100%;
}

.table-body-2 { /* Report table body*/
    overflow-y: auto;
    overflow-x: hidden;
    max-height: 500px;
    display: flex;
    flex-direction: column;
    height: 60vh;
}

.table-row-2 { /* Report table row */
    display: flex;
    flex-direction: row;
    margin-left: 15px;
    margin-right: 10px;
    box-shadow: 0px 1px 0px rgba(207, 207, 207, 0.2);
}

.table-cell-2 { /* Report table cell */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px;
    gap: 1rem;
    flex: 1;
    min-width: 100px;
}

.table-cell-2-p{ /* table cell text */
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: start;
    align-items: center;
}

@media(max-width: 1280px) {
    .table-2 { /* Report table wrapper */
        width: 100%;
        overflow-x: auto;
        overflow-y: hidden;
    }

    .table-body-2 { /* Report table body*/
        overflow-y: auto;
        overflow-x: hidden;
        max-height: 500px;
        display: flex;
        flex-direction: column;
        width: max-content;
    }
}

/* WebKit Browsers (Chrome, Edge, Safari) */
.table-2::-webkit-scrollbar-track,
.table-body-2::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 10px;
}

.table-2::-webkit-scrollbar-thumb,
.table-body-2::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
}

    .table-2::-webkit-scrollbar-thumb:hover,
    .table-body-2::-webkit-scrollbar-thumb:hover {
        background: #555;
    }

/* Remove scrollbar corner (where horizontal and vertical scrollbars meet) */
.table-2::-webkit-scrollbar-corner,
.table-body-2::-webkit-scrollbar-corner {
    background: transparent;
}

/* Firefox */
.table-2,
.table-body-2 {
    scrollbar-width: thin;
    scrollbar-color: #888 #f0f0f0;
}

/* SubAccountSearch Table */

.table-container-3 { /* subaccountsearch table container */
    width: 100%;
    max-height: 600px;
    overflow: hidden;
    box-sizing: border-box;
    margin-bottom: 50px;
}

.table-3 { /* trnsearch table */
    overflow-x: hidden;
    overflow-y: hidden;
    max-height: 600px;
}

.table-body-3 { /* trnsearch table body */
    overflow-x: hidden;
    overflow-y: auto;
    max-height: 500px;
}

.table-row-3 { /* table row for TrnSearch, Report, SubAccountSearch */
    margin-left: 10px;
    margin-right: 10px;
    box-shadow: 0px 1px 0px rgba(207, 207, 207, 0.2);
}

.table-cell-3 { /* heade/body row cell for any column */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px;
    gap: 1rem;
}

.table-cell-3-p { /* table cell text */
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: start;
    align-items: center;
    padding: 8px;
    margin: 0px 10px;
}

/* WebKit Browsers (Chrome, Edge, Safari) */
.table-3::-webkit-scrollbar-track,
.table-body-3::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 10px;
}

.table-3::-webkit-scrollbar-thumb,
.table-body-3::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
}

    .table-3::-webkit-scrollbar-thumb:hover,
    .table-body-3::-webkit-scrollbar-thumb:hover {
        background: #555;
    }

/* Remove scrollbar corner (where horizontal and vertical scrollbars meet) */
.table-3::-webkit-scrollbar-corner,
.table-body-3::-webkit-scrollbar-corner {
    background: transparent;
}

/* Firefox */
.table-3,
.table-body-3 {
    scrollbar-width: thin;
    scrollbar-color: #888 #f0f0f0;
}
