.section-tab {
    display: none;
}

.section-tab.active {
    display: block;
}

.section-tab.active .table-style {
    animation: fade .3s linear;
}

@keyframes fade {
    0% {
        display: none;
        opacity: 0;
    }

    1% {
        display: block;
        opacity: 0;
    }

    100% {
        display: block;
        opacity: 1;
    }
}

.tab-button {
    border-bottom: 1px solid #E0E2E5;
}

.btn-tab {
    padding: 0;
    border: 0;
    padding-bottom: 10px;
    border-bottom: 2px solid transparent;
    font-size: 14px;
    line-height: 23px;
    color: #888888;
    margin-right: 20px;
    cursor: pointer;
    transition: all .3s;
    background-color: #fff;
}

.btn-tab:nth-child(1) {
    margin-left: 20px;
}

.btn-tab.active {
    font-family: 'IBMPlexSansThai 700';
    color: #1A3D92;
    border-color: #1A3D92;
}

.btn-tab:hover {
    color: #1A3D92;
    border-color: #1A3D92;
}


.tbody-style tr {
    color: #273046;
}

.tbody-style td:nth-child(3),
.tbody-style td:nth-child(7) {
    font-family: 'IBMPlexSansThai 700';
}

.btn-add-job {
    width: 143px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}