html, body {
    font-family: 'Roboto', sans-serif !important;
}

.shadow {
    -webkit-box-shadow: 0 30px 60px 0 rgba(0,0,0,0.3);
    box-shadow: 0 30px 60px 0 rgba(0,0,0,0.3);
}

.table {
    font-size: 12px;
}

.th-width {
    min-width: 160px;
    max-width: 160px;
    width: 160px;
}

.text-content {
    display: flex;
    font-family: "Courier New", Courier, monospace;
    font-size: 13px;
    width:100%;
    overflow-x: scroll;
}
.text-content .content {
    margin: 0 auto;
    background-color: white;
    color: black;
} 
.text-content .print-content-white {
    margin: 0 auto;
    background-color: white;
    color: black;
}


.text-content::-webkit-scrollbar {
    width: 10px;
}
.text-content::-webkit-scrollbar-track {
    background: #f1f1f1; 
}
.text-content::-webkit-scrollbar-thumb {
    background: #888; 
}
.text-content::-webkit-scrollbar-thumb:hover {
    background: #555; 
}

input.chk-toggle-content {
    display: none;
}

label {
    cursor: pointer;
}

.payslip-content {
    display: none;
}
.parsed-content {
    display: none;
}

#chk-payslip-content:checked ~ .nav .nav-item:nth-of-type(1) a,
#chk-parsed-content:checked ~ .nav .nav-item:nth-of-type(2) a {
    color: #495057;
    background-color: #fff;
    border-color: #dee2e6 #dee2e6 #fff;
}


#chk-payslip-content:checked ~ #main-content .payslip-content {
    display: block;
}
#chk-parsed-content:checked ~ #main-content .parsed-content {
    display: block;
}

#main-content {
    height: auto;
    min-height: 70vh;
    position: relative;
    border: solid thin rgb(100, 100, 100);
}

.spinner {
    z-index: 100;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.4);
    height: 600px;
    display: flex;
    width: 100%;
}

.spinner img {
    margin: auto;
}

.print-content {
    font-size: 12px;
    overflow: auto;
}