html {
    font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

.form-check-input:checked {
    background-color: #004aab !important;
    border-color: #004aab !important;
}

.form-check-input:hover {
    cursor: pointer;
}

html {
    position: relative;
    min-height: 100%;
}

/*body {
  margin-bottom: 60px;
}*/

/*custom styling*/
body {
    background: url('../files/img/bg-wavy.png') no-repeat;
    background-size: cover;
    height: 100vh;
    overflow-y: hidden;
}

.left-part {
    background: url('../files/img/bg-faspis.png') no-repeat;
    background-size: cover;
}

.right-part {
    background: url('../files/img/bg-wavy.png') no-repeat;
    background-size: cover;
}

button#password-toggle {
    border: 1px solid #ced4da;
    background: white;
    border-left: 0;
}

button#password-toggle:focus {
    box-shadow: none;
}

.btn:hover {
    box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px, rgba(0, 0, 0, 0.07) 0px 2px 2px, rgba(0, 0, 0, 0.07) 0px 4px 4px, rgba(0, 0, 0, 0.07) 0px 8px 8px, rgba(0, 0, 0, 0.07) 0px 16px 16px;
    transform: translateY(-2px);
    transition: all 0.15s ease-in-out;
}

.btn-primary {
    background-color: #033da5 !important;
    border-color: #033da5 !important;
    min-width: 4rem;
}

.btn-secondary {
    color: #033da5 !important;
    background-color: transparent !important;
    border-color: #033da5 !important;
    min-width: 4rem;
}

.btn-add {
    position: absolute;
    top: 15%;
    left: 37%;
}

.form-control::placeholder {
    font-style: italic;
    font-size: smaller;
}

/*a {
    color: #033da5 !important;
}*/

.border-icon {
    border: 10px solid #5c83cf !important;
}

.border-icon-danger {
    border: 10px solid #e56874 !important;
}

.icon-bg-blue {
    position: relative;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: radial-gradient(circle, #dbeaff 30%, #dbeaff 40%, #eff6ff 50%);
}

.top-neg-10 {
    top: -10%;
}

.top-10 {
    top: 10%;
}

.w-80 {
    width: 80%;
}

.w-20 {
    width: 20%;
}

.w-15 {
    width: 15%;
}

.w-10 {
    width: 10%;
}

.w-5 {
    width: 5%;
}

.w-15px {
    width: 15px;
}
.w-20px {
    width: 20px;
}

.h-200 {
    height: 200%;
}

.mh-50vh {
    max-height: 50vh;
}

.mh-55vh {
    max-height: 55vh;
}

.mh-350px {
    max-height: 350px;
}

.mh-400px {
    max-height: 400px;
}

.min-h-400px {
    min-height: 400px;
}

.min-vh-65 {
    min-height: 65vh;
}

.minmax-height-50 {
    min-height: 50%;
    max-height: 50%;
}

.mw-100px {
    max-width: 100px !important;
}

.mw-150px {
    max-width: 150px !important;
}

.mw-200px {
    max-width: 200px !important;
}

.mw-250px {
    max-width: 250px !important;
}

.mw-198px {
    max-width: 198px;
}

.min-w-300px {
    min-width: 300px !important;
}

.min-w-250px {
    min-width: 250px !important;
}

.min-w-200px {
    min-width: 200px !important;
}

.min-w-170px {
    min-width: 170px !important;
}

.min-w-150px {
    min-width: 150px !important;
}

.min-w-100px {
    min-width: 100px !important;
}

.min-w-50px {
    min-width: 50px !important;
}

svg:focus {
    border: none;
    outline: none;
}

.top-bar {
    position: fixed;
    width: 100%;
    height: 80px;
    z-index: 1;
}

.top-bar-container {
    background-color: transparent;
    height: 80px;
    margin-left: 300px;
    border-bottom: 1px solid #C3C4C6;
    transition: all 0.2s ease;
}

.dropdown {
    position: relative;
    display: inline-block;
}

    .dropdown button {
        background-color: #4CAF50;
        padding: 10px;
        font-size: 16px;
        border: none;
    }

.breadcrumb-item + .breadcrumb-item::before {
    content: none;
}

aside {
    background: #004aab;
    position: fixed;
    top: 0;
    width: 300px;
    height: min(100vh, 100%);
    box-shadow: rgba(0, 0, 0, 0.175) 5px 0px 15px;
    transition: all 0.2s ease;
    overflow-y: scroll;
    z-index: 5;
}

    aside::-webkit-scrollbar {
        width: 8px;
    }

    aside::-webkit-scrollbar-thumb {
        background: #c0c0c0;
    }

        aside::-webkit-scrollbar-thumb:hover {
            background: #cccccc;
        }

        aside::-webkit-scrollbar-thumb:active {
            background: #c0c0c0;
        }

    aside::-webkit-scrollbar-track {
        background: #d9d9d9;
    }

#sidebarToggle {
    position: absolute;
    right: 25px;
    top: 28px;
    color: white;
}

    #sidebarToggle:hover {
        cursor: pointer;
    }

.aside-minimized {
    width: 100px;
}

.hide-text .nav-link span {
    display: none;
    transition: all 0.2s ease;
}

.nav-bar-container {
    position: relative;
    z-index: 0;
}

.navbar-nav .nav-item .nav-link {
    color: #fff;
}

.navbar-nav .nav-item {
    transition: all 0.2s ease;
}

.navbar-nav .nav-item.selected {
    background-color: white;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

    .navbar-nav .nav-item:hover {
        background-color: #C3C4C6;
        box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
        transform: translateY(-5px);
    }

        .navbar-nav .nav-item.selected .nav-link,
        .navbar-nav .nav-item:hover .nav-link {
            color: #004AAB !important;
        }

.down {
    -webkit-transform: rotate(90deg);
    transition: all 0.1s ease-in-out;
}

.sub-nav-item {
    display:none;
    margin: 0 0 10px 56px;
}

    .sub-nav-item ul li:hover {
        transform: translateY(-5px);
        transition: all 0.2s ease;
    }

    a.sub-nav-link {
        font-weight: 600;
        color: #fff;
        text-decoration: none;
    }

.main {
    position: absolute;
    margin-top: 80px;
    padding-left: 320px;
    padding-bottom:80px;
    background-color: transparent;
    height: min(100vh, 100%);
    overflow-y: auto;
    width: 100%;
    float: left;
    overflow-y: scroll;
    transition: all 0.2s ease;
}

footer {
    position: fixed;
    bottom: 0;
    padding-left: 180px;
    background: #f6f6f6;
    min-width: 100vw;
    transition: all 0.2s ease;
    z-index: 4;
}

::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-thumb {
    background: #FFFFFF;
}

    ::-webkit-scrollbar-thumb:hover {
        background: #6C757D;
    }

    ::-webkit-scrollbar-thumb:active {
        background: #6C757D;
    }

::-webkit-scrollbar-track {
    background: #C3C4C6;
}

.scrollable-signup-container

.summary-container::-webkit-scrollbar, .scrollable-signup-container::-webkit-scrollbar {
    width: 12px;
}

.summary-container::-webkit-scrollbar-thumb, .scrollable-signup-container::-webkit-scrollbar-thumb {
    background: #FFFFFF;
    border-radius: 5px;
}

    .summary-container::-webkit-scrollbar-thumb:hover, .scrollable-signup-container::-webkit-scrollbar-thumb:hover {
        background: #6C757D;
    }

    .summary-container::-webkit-scrollbar-thumb:active, .scrollable-signup-container::-webkit-scrollbar-thumb:active {
        background: #6C757D;
    }

.summary-container::-webkit-scrollbar-track, .scrollable-signup-container::-webkit-scrollbar-track {
    background: #C3C4C6;
    border-radius: 5px;
}

.text-blue {
    color: #004AAB;
}

.text-blue2 {
    color: #3568D4
}

.text-darkgray {
    color: #6C757D;
}

.text-lightgray {
    color: #f2f2f3 !important;
}

.forgot-pass-modal-content {
    -webkit-border-radius: 15px !important;
    -moz-border-radius: 15px !important;
    border-radius: 15px !important;
    padding: 25px;
}

.forgot-pass-modal-header {
    border-bottom: none;
}

.forgot-pass-modal-footer {
    border-top: none;
}

.forgot-pass-modal-title {
    font-size: x-large;
}

#password-validator {
    position: absolute;
    z-index: 50;
    margin-top: 20px;
    display: none;
    transition: 0;
}

.fade-out {
    opacity: 0;
    pointer-events: none;
}

#password-validator.fade-out {
    transition: opacity 1s;
}

.arrow {
    height: 25px;
    left: 50%;
    overflow: hidden;
    position: absolute;
    top: -25px;
    -webkit-transform: (-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 50px;
}

    .arrow::after {
        background: #FFFFFF;
        box-shadow: 1px 1px 14px 0px rgb(0 0 0 / 20%);
        content: "";
        height: 20px;
        left: 50%;
        position: absolute;
        -webkit-transform: translateX(-50%) translateY(75%) rotate(45deg);
        -ms-transform: translateX(-50%) translateY(75%) rotate(45deg);
        transform: translateX(-50%) translateY(75%) rotate(45deg);
        width: 20px;
    }

.inputValidationIndicator {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    padding-top: 15px;
    padding-right: 14px;
    padding-bottom: 10px;
    padding-left: 14px;
    background-color: #FFFFFF;
    box-shadow: 1px 1px 14px 0px rgb(0 0 0 / 20%);
    font-size: 11px;
    line-height: 15px;
}

.header {
    font-size: 12px;
    font-weight: 400;
    margin-bottom: 15px;
    padding-left: 4px;
}

.conditionList {
    padding-left: 0px;
}

.conditionWrapper {
    padding-top: 3px;
    padding-right: 0px;
    padding-bottom: 3px;
    padding-left: 4px;
    list-style-type: none;
    margin-bottom: 4px;
    color: red;
}

.bg-blue {
    background: #004AAB;
}

.bg-blue2 {
    background: #4a86ff;
}

.bg-lightblue {
    background: #e1ebff;
}
.bg-lightblue2 {
    background: #bbd2fe !important;
}

.bg-lighterblue {
    background: #dae5ff !important;
}

.bg-lightgreen {
    background: #90ee90;
}

.bg-lightgray {
    background: #f2f2f3;
}

.bg-modal {
    background: url('../files/img/bg-modal.png') no-repeat;
    background-size: cover;
}

.avatar {
    border-radius: 50%;
    object-fit: cover;
}

/* multi-step sign up form */
.tab {
    display: none;
}

.step {
    height: auto;
    width: auto;
    margin: 0 2px;
    border: none;
    opacity: 0.5;
    color: #fff;
    position: relative;
}

    .step.active {
        opacity: 1;
    }

    .step.finish {
        color: #fff;
        opacity: 1;
    }

    .step:nth-child(-n+4)::after {
        content: '';
        position: absolute;
        top:22%;
        left: 7.3%;
        transform: translateX(-50%);
        width: 1px;
        height: 45px;
        background-color: #fff;
        margin: 40px 0;
    }

.error-message {
    color: red;
    font-size: 12px;
    display: none; /* Hide error message by default */
}

.error {
    border: 1px solid red;
}

input#summaryPassword {
    border: none;
    color: #000;
    background: transparent;
}
/* multi-step sign up form end */

/* multi-step submission form */
.form-submit-tab {
    display: none;
}

.form-submit-step {
    color: #6c757d;
    padding: 1rem;
    border-bottom: 1px solid #ced4da;
    background-image: linear-gradient(#fff, #f3f4f5);
    position: relative;
}

    .form-submit-step.active {
        color: #004aab;
        border-bottom: solid 3px #004aab;
        background-image: linear-gradient(#fff, #e6f1ff);
    }
/* multi-step concept proposal end */

/* multi-step proposal submission form */
.proj-prop .form-submit-tab, .conc-prop .form-submit-tab {
    display: none;
}

.proj-prop .form-submit-step, .conc-prop .form-submit-step {
    color: #6c757d;
    padding: 1rem;
    border-bottom: none;
    background-image: none;
    background-color: #fff;
    width: calc(100% / 7);
}

.conc-prop .form-submit-step {
    width: 100% !important;
}

    .proj-prop .form-submit-step:not(:last-child)::after, .conc-prop .form-submit-step:not(:last-child)::after {
        content: '';
        position: absolute;
        top: 22%;
        left: 57%;
        width: calc(72% + 100% / 7);
        height: 3px;
        background-color: #f2f2f3;
        z-index: 1;
    }

    .proj-prop .form-submit-step .form-submit-step-container, .conc-prop .form-submit-step .form-submit-step-container {
        color: #004AAB;
    }

    .proj-prop .form-submit-step.active .form-submit-step-container, .conc-prop .form-submit-step.active .form-submit-step-container {
        font-weight: 600;
        color: #004aab;
    }

    .proj-prop .form-submit-step.active .form-submit-title-container,
    .proj-prop .form-submit-step.completed .form-submit-title-container,
    .conc-prop .form-submit-step.active .form-submit-title-container,
    .conc-prop .form-submit-step.completed .form-submit-title-container {
        color: #000 !important;
    }

    .proj-prop .form-submit-step.active .icon-indicator,
    .proj-prop .form-submit-step.completed .icon-indicator,
    .conc-prop .form-submit-step.active .icon-indicator,
    .conc-prop .form-submit-step.completed .icon-indicator {
        background-color: #004AAB !important;
        color: #fff !important;
    }

    .proj-prop .form-submit-step.completed:not(:last-child)::after,
    .proj-prop .form-submit-step.active:not(:last-child)::after,
    .conc-prop .form-submit-step.completed:not(:last-child)::after,
    .conc-prop .form-submit-step.active:not(:last-child)::after {
        background-color: #004AAB;
    }

    .proj-prop .form-submit-step.active .form-submit-step-container,
    .proj-prop .form-submit-step.completed .form-submit-step-container,
    .conc-prop .form-submit-step.active .form-submit-step-container,
    .conc-prop .form-submit-step.completed .form-submit-step-container {
        font-weight: 600;
        color: #004AAB;
    }

.special-proj .form-submit-step, .ppp-proj .form-submit-step {
    width: calc(100% / 9) !important;
}

    .special-proj .form-submit-step:not(:last-child)::after, .ppp-proj .form-submit-step:not(:last-child)::after {
        left: 59%;
        width: calc(72% + 100% / 9) !important;
    }

.conc-prop .form-submit-step:not(:last-child)::after {
    top: 27% !important;
    left: 52.8%;
    width: calc(61.2% + 100% / 3) !important;
}
/* multi-step proposal submission form end */

.btn-cancel-signup {
    position: fixed;
    top: 50px;
    right: 50px;
}

.pwd-tooltip {
    color: #000;
    background-color: white;
    position: absolute;
    top: 60vh;
    left: 80vw;
    
}

.pwd-tooltip-rp {
    z-index: 3; 
    top: 57vh;
    left: 83vw;
}
    
    .dt-container thead {
        background: #004AAB;
        color: #fff;
    }

.dt-container th:hover {
    outline: none !important;
}

.dt-container .row.mt-2.justify-content-between:first-child {
    flex-direction: row-reverse !important;
    margin-bottom: 20px;
}

.dt-container > div:nth-child(3) {
    margin: 20px 0 20px 0 !important;
}

.dt-container .row.mt-2.justify-content-between div:nth-child(2) {
    margin-left: 0px !important;
    padding-left: 0px;
}

.dt-container .row.mt-2.justify-content-between div:nth-child(1) {
    margin-right: 0px !important;
}

.dt-container tbody tr {
    background: #fff;
    /*cursor: pointer;*/
}

/* Hide labels for dt-search IDs within .workflow-table */
.workflow-table label[for^="dt-search-"] {
    display: none !important;
}

/* Styling for dt-search input fields within .workflow-table */
.workflow-table [id^="dt-search-"] {
    margin-left: 0px !important;
    width: max(300px, 100%) !important;
}

    /* Styling for focused dt-search input fields within .workflow-table */
    .workflow-table [id^="dt-search-"]:focus {
        box-shadow: none !important;
    }


.data-table th, .data-table td {
    text-align: left;
    vertical-align: middle;
    white-space: nowrap;
}

/*table.dataTable th.dt-type-date, .dt-type-date, table.dataTable th.dt-type-numeric, .dt-type-numeric {
    text-align: left !important;
}*/

table.dataTable th.dt-type-date, .dt-type-date, table.dataTable td.dt-type-numeric {
    text-align: left !important;
}

.page-item.active .page-link {
    background-color: #004AAB;
    border-color: #004AAB;
    border-radius: 100%;
}

.page-item:not(.active) .page-link {
    border: none !important;
    background: transparent !important;
}

.dt-layout-full {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.table-bordered td {
    border: none !important;
}
/*table.table.dataTable > tbody > tr.selected > * {
box-shadow: inset 0 0 0 9999px #e7f1ff !important;
color: #000 !important;
border-top: 0.114rem solid lightgray;
border-bottom: 0.114rem solid lightgray;
}*/
.row-checkbox, .column-checkbox {
    width: 1.2rem;
    height: 1.3rem;
    margin-top: 2px;
    cursor: pointer;
}

.status-complete {
    border: 1px solid #28a745;
    padding: 0 10px 2px;
    border-radius: 5px;
    color: #28a745;
    background: #e8f5e9;
    min-width: 100px;
    text-align: center;
}

.status-pending, .status-orange {
    border: 1px solid #FD7E14;
    padding: 0 10px 2px;
    border-radius: 5px;
    color: #FD7E14;
    background: #ffecdc;
    min-width: 100px;
    text-align: center;
}

.status-active, .status-reviewed, .status-blue {
    border: 1px solid #0D6EFD;
    padding: 0 10px 2px;
    border-radius: 5px;
    color: #0D6EFD;
    background: #e7f1ff;
    min-width: 100px;
    text-align: center;
}

.status-reviewed-by-dc {
    border: 1px solid #FD7E14;
    padding: 0 10px 2px;
    border-radius: 5px;
    color: #FD7E14;
    background: #FFECDC;
    min-width: 100px;
    text-align: center;
}

.status-inactive, .status-red {
    border: 1px solid #DC3545;
    padding: 0 10px 2px;
    border-radius: 5px;
    color: #DC3545;
    background: #ffeaec;
    min-width: 100px;
    text-align: center;
}

.status-ongoing, .status-green {
    border: 1px solid #198754;
    padding: 0 10px 2px;
    border-radius: 5px;
    color: #198754;
    background: #d1e7dd;
    min-width: 100px;
    text-align: center;
}

.pe-cursor {
    cursor: pointer;
}

#usersByDivisionTable th, #usersByDivisionTable td {
    text-align: left;
}

#usersByDivisionTable_wrapper .row.mt-2.justify-content-between:first-child, #usersByDivisionTable_wrapper .row.mt-2.justify-content-between,
#usersByDivisionTable_wrapper .row.mt-2.justify-content-md-center {
    margin-top: 0px !important;
    margin-bottom: 0px !important;
}


#toast-container {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100%;
    z-index: 1050 !important;
}

#toast-container > div {
    padding: 5px 15px 5px 50px !important;
    width: auto !important;
    margin-left: 14vw !important;
}

.toast-message {
    margin-right: 30px;
}

span.select2.select2-container.select2-container--default {
    width: 100% !important;
}

input.select2-search__field {
    border-radius: 4px;
}

.select2-container--default .select2-search--dropdown .select2-search__field:focus-visible {
    outline: none;
}

.select2-container .select2-selection--single {
    height: calc(2.25rem + 2px) !important;
    padding: 0.375rem 0.75rem !important;
    font-size: 1rem !important;
    line-height: 1.5 !important;
    border: 1px solid #ced4da !important; 
    border-radius: 0.25rem !important;
    width: 100% !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 100% !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
}

.select2-results__option--highlighted[aria-selected] {
    background-color: #004aab !important;
    color: white;
}

.tab-content, .tab-page .tab-content {
    background: rgba(229, 230, 231, 0.5);
    padding-top: 15px;
    border-radius: .25rem
}

.tab-page .nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
    color: #004aab;
    background-color: rgba(229, 230, 231, 0.5);
    border-bottom: solid 3px #004aab;
    font-weight: 600;
}

.tab-page .nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link:not(.active) {
    color: #777;
    font-weight: 600;
}

    .tab-page .nav-tabs .nav-link:not(.active):hover, .nav-tabs .nav-link:not(.active):hover {
        border-color: transparent;
    }

.select2-container .select2-selection--single {
    padding: 0.375rem 0.25rem !important;
}

.dt-length span.select2.select2-container.select2-container--default {
    width: 68.8px !important;
}

/*
#workflowsTab .nav-link.active, .tab-page .nav-link.active {
    color: #004aab !important;
    font-weight: 600;
    background-color: transparent;
    border: none !important;
    border-bottom: solid 3px #004aab;
}

#workflowsTab .nav-link.active, .tab-page .nav-link.active {
    color: #004aab !important;
    font-weight: 600;
    background-color: transparent;
    border: none !important;
    border-bottom: solid 3px #004aab !important;
}

#workflowsTab .nav-link:not(.active), .tab-page .nav-link:not(.active) {
    color: #777;
}*/

.input-icon {
    position: relative;
}

    .input-icon > i {
        position: absolute;
        display: block;
        transform: translate(0, -50%);
        top: 50%;
        pointer-events: none;
        width: 55px;
        text-align: center;
        color: #6c757d;
        font-style: italic;
        font-size: small;
    }

    .input-icon > input {
        padding-left: 50px;
        padding-right: 0;
    }

.project-status-content {
    position: absolute;
    background-color: white;
    border: 1px solid #ddd;
    padding: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    top: 17px;
    left: 23px;
    width: 300px;
    z-index: 1;
    opacity: 0;
    transform: translate(-10px, -5px);
    transition: opacity 0.5s, transform 0.5s;
    border-top-right-radius: 15px;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
}

.project-status-icon-container {
    position: relative;
}

.project-status-content.show {
    opacity: 1;
    transform: translate(0px, 5px);
}

div.dt-container div.dt-paging {
    display: flex;
    margin: 0px;
    padding: 20px;
    justify-content: flex-end
}

.dt-info {
    display: none;
    /*display: flex;
    margin: 0px;
    justify-content: flex-end*/
}
.dt-search {
    display: flex;
    justify-content: flex-end;
    /*width: 50%;*/
}
.dt-buttons{
    padding-top: 10px;
}
/*div.dt-processing > div {
    display: none;
}*/
/*.dataTables_scroll {
    position: relative
}

.dataTables_scrollHead {
    margin-bottom: 40px;
}

.dataTables_scrollFoot {
    position: absolute;
    top: 38px
}*/

.region-toggle {
    display: inline-block;
    transition: transform 0.15s ease;
}

    .region-toggle.rotate {
        transform: rotate(90deg);
    }

.list-before-fw-bold li::before {
    font-weight: bolder;
}

.disabled-link {
    pointer-events: none;
    color: gray;
    cursor: not-allowed;
}
#passwordStrengthBar .progress-bar {
    transition: width 0.5s ease;
}

/* Ensures fixed column header background matches other headers */
th.dtfc-fixed-left, th.dtfc-fixed-start {
    background-color: #004AAB !important; /* match your table header blue */
    color: #fff !important; /* match text color */
}

td.dtfc-fixed-left, td.dtfc-fixed-start {
    background-color: #fff !important; /* or #f8f9fa for Bootstrap table */
    color: #000 !important; /* match your body cell text */
}
div.dtfc-fixed-left tbody tr:nth-child(odd),
div.dtfc-fixed-start tbody tr:nth-child(odd) {
    background-color: #f8f9fa !important;
}

div.dtfc-fixed-left tbody tr:nth-child(even),
div.dtfc-fixed-start tbody tr:nth-child(even) {
    background-color: #fff !important;
}

