@import url('https://fonts.googleapis.com/css2?family=Life+Savers:wght@400;700;800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


body {
    font-family: "Poppins", sans-serif;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    background-color: #Ffff;
}

:root {
    --body-bg: #F8FAFC;
    --background-color: #ffffff;
    --primary-color: #007CBB;
    --white: #ffffff;
    --heading-color: #0F172A;
    --label-color: #374151;
    --tab-text: #64748B;
}

html {
    font-size: 16px;
}

a {
    color: var(--primary-color);
}

.form-control {
    padding: .69rem .75rem;
    border-radius: 8px;
}

label {
    color: var(--label-color);
    font-weight: 500;
}

.form-control:focus,
.form-check-input:focus, .select2-container--default .select2-selection--single:focus {
    border-color: var(--primary-color);
    box-shadow: none;
}


.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/*Dashboard Css Start Here*/
/*Header Css Here*/
.headersec {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--background-color);
    padding: 15px;
    margin-left: 300px;
    position: sticky;
    top: 0;
    z-index: 9;
    transition: all 0.3s ease-in-out;
    border-bottom: 1px solid #E2E8F0;
}

    .headersec .menuBtn {
        background: transparent;
        border: none;
        outline: none;
    }

    .headersec .rightPanelBoxhead {
        display: flex;
        align-items: center;
        gap: 10px;
    }

        .headersec .rightPanelBoxhead button {
            background: transparent;
            border: none;
            outline: none;
            padding: 0px;
            overflow: hidden;
        }

.profileDropdown ul {
    padding: 0px;
    overflow: hidden;
}

    .profileDropdown ul li {
        border-bottom: 1px solid #ddd;
    }

        .profileDropdown ul li:last-child {
            border: none;
        }

        .profileDropdown ul li a {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 7px 10px;
        }

            .profileDropdown ul li a span:first-child {
                width: 20px;
                text-align: center;
                color: var(--primary-color);
            }

            .profileDropdown ul li a:hover {
                background: var(--primary-color);
                color: var(--white);
            }


                .profileDropdown ul li a:hover span:first-child {
                    color: var(--white);
                }


/*Sidebar Css Here*/
.closeAside {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
    background-color: var(--primary-color);
    color: #fff;
    position: absolute;
    right: -15px;
    top: 25px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    display: none;
}

.sidebarsec {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    width: 300px;
    background: var(--background-color);
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease-in-out;
    z-index: 99;
    border-right: 1px solid #E2E8F0;
}

    .sidebarsec > a.sitelogo {
        display: block;
        text-align: center;
        padding: 10px;
        padding-bottom: 10px;
    }

    .sidebarsec ul {
        list-style: none;
        padding: 10px 0px;
        margin: 0px;
    }
        .sidebarsec ul li {
            padding: 0 15px;
            margin-bottom: 10px;
            list-style: none;
        }
        .sidebarsec ul li a {
            text-decoration: none;
            color: var(--label-color);
            font-size: 1rem;
            display: flex;
            align-items: center;
        }
            .sidebarsec ul li a svg {
                margin-right: 10px;
            }
 
    .sidebarsec .sidenavlink {
        display: flex;
        padding: 15px;
        gap: 15px;
        text-decoration: none;
        font-size: 1rem;
        font-weight: 500;
        color: var(--label-color);
        border-radius: 5px;
    }

    .sidebarsec .active-class {
        color: var(--white);
        background-color: var(--primary-color);
        font-weight: 500;
        font-size: 1.1rem;
    }

    .sidebarsec ul li a span {
        line-height: normal;
    }

.active-class svg path {
    stroke: #fff;
    fill: var(--primary-color) !important;
}

.sidenavlink svg path {
    fill: #fff;
}

.sidebarsec ul li a:hover span svg,
.sidebarsec ul li a.sidenavlinkActive span svg,
.sidebarsec ul li a:hover span svg path,
.sidebarsec ul li a.sidenavlinkActive span svg path {
    stroke: #fff;
    opacity: 1;
}

.dashboardBodySection {
    padding: 20px;
    margin-left: 300px;
    transition: all 0.3s ease-in-out;
    /*    height: calc(100vh - 140px);*/
    min-height: calc(100vh - 140px);
}

.sectionHeading h2 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--heading-color);
}

/*Dashboard Css End Here*/

/*Dashboard Sidebar Collapse Css Start Here*/

.dashboardSlide .headersec,
.dashboardSlide .dashboardBodySection {
    margin-left: 90px;
}

.dashboardSlide .sidebarsec {
    width: 90px;
}

    .dashboardSlide .sidebarsec > a.sitelogo {
        height: 85px;
        display: flex;
        align-items: center;
    }

        .dashboardSlide .sidebarsec > a.sitelogo img {
            width: 80px;
        }

    .dashboardSlide .sidebarsec ul li a span:nth-child(2) {
        display: none;
    }


/*Dashboard Sidebar Collapse Css End Here*/

.dashbaodr-bg {
    background: var(--body-bg)
}

.notification {
    background-color: #F1F5F9;
    border-radius: 8px;
    padding: 8px 15px;
}

.profileDropdown .user-profile img {
    height: 45px;
    width: 45px;
    border-radius: 50px;
    border: 2px solid var(--primary-color);
}

.profileDropdown span {
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--label-color);
}

.profileDropdown p {
    font-weight: 300;
    color: var(--label-color);
}

.footer-sec {
    justify-content: center;
    padding: 20px 15px;
    font-size: 0.8rem;
    background-color: var(--background-color);
    border-top: 1px solid #E2E8F0;
}

.dashbard-card-bg {
    background-color: var(--background-color);
    padding: 20px;
    border-radius: 10px;
/*    height: calc(100vh - 225px);*/
    border: 1px solid #E2E8F0;
}

.heading-line {
    position: relative;
}

    .heading-line:after {
        position: absolute;
        left: 0;
        top: 0;
        content: "";
        height: 25px;
        width: 3px;
        border-radius: 3px;
        background: var(--primary-color);
        color: var(--primary-color);
    }

    .heading-line h5 {
        color: var(--primary-color);
    }

/* tab-css */
.dashboard-tab .nav-pills .nav-item {
    color: var(--label-color);
    border-radius: 10px;
    border: 1px solid #E2E8F0;
    margin-right: 15px;
}

    .dashboard-tab .nav-pills .nav-item .nav-link {
        color: var(--label-color);
        padding: 11px 25px;
    }

        .dashboard-tab .nav-pills .nav-item .nav-link svg {
            margin-bottom: 5px;
        }

    .dashboard-tab .nav-pills .nav-item .active {
        background-color: var(--primary-color);
        color: var(--white);
    }

        .dashboard-tab .nav-pills .nav-item .active svg path {
            stroke: var(--white);
        }

.custom-btn {
    background-color: var(--primary-color);
    color: #fff;
    padding: 6px 20px;
}

    .custom-btn:hover {
        border: 1px solid var(--primary-color);
        color: var(--primary-color);
    }

.cancel-btn {
    padding: 6px 20px;
    border: 1px solid var(--tab-text);
    color: var(--tab-textr);
}

    .cancel-btn:hover {
        border: 1px solid var(--tab-text);
        color: var(--tab-textr);
    }


/* login-1 css start */

.login-bg {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-image: url(../images/Login-bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

/* .login-logo img {
    width: 200px;
} */


.sign-in-btn {
    background-color: var(--primary-color);
    color: #fff;
    padding: 12px 15px;
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: 500;
}

    .sign-in-btn:hover {
        border: 1px solid var(--primary-color);
        color: var(--primary-color);
    }


.form-bg {
    background-color: #f1faff;
    padding: 70px 50px;
    max-width: 650px;
    width: 100%;
    border-radius: 30px;
}

    .form-bg .form-control {
        padding: 1.0rem .75rem;
        /* border: 1px solid #dfdfdf; */
    }

    .form-bg .email-icon {
        padding: 1.0rem .75rem;
        position: absolute;
        right: 0;
        top: 36%;
    }

.forgot-password .form-check-input {
    width: 1.2em;
    height: 1.2em;
    margin-top: 3px;
    border: 1px solid var(--primary-color);
    margin-right: 7px;
}


/* table-css-start */


/* .dashboard-table table td {
    color: #fff;
} */

.dashboard-table table th {
    color: #fff;
    background-color: var(--primary-color) !important;
}

.dashboard-table table.dataTable thead tr th:first-child {
    border-top-left-radius: 5px;
    text-align: left;
}

.dashboard-table table.dataTable thead tr th:last-child {
    border-top-right-radius: 5px;
}

.dashboard-table table.dataTable tbody tr td:first-child {
    text-align: left;
}

.dashboard-table .table-striped > tbody > tr:nth-of-type(odd) > * {
    background-color: #fff;
    /* color: #fff; */
}

.dashboard-table table.table.dataTable.table-striped > tbody > tr:nth-of-type(2n+1) > * {
    box-shadow: none;
}

.dashboard-table .table-striped > tbody > tr:nth-of-type(even) > * {
    background-color: #ddf4ff;
}

.dashboard-table tbody,
.dashboard-table td,
.dashboard-table th,
.dashboard-table thead,
.dashboard-table tr {
    border-bottom: 1px solid #d1d1d13d;
    font-weight: 400;
}

.dashboard-table .dt-scroll-body {
    border-bottom: none;
}

.dashboard-table .table > :not(caption) > * > * {
    padding: .7rem .5rem;
}

.dashboard-table .active > .page-link,
.page-link.active {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}


.dashboard-table .active-class {
    color: #0A8743;
}

.dashboard-table .pending-class {
    color: #F83D35;
}

.dashboard-table .action-btn .view-icon {
    border: 1px solid #0A8743;
    background-color: #0a874357;
    color: #0A8743;
    width: 35px;
    height: 35px;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dashboard-table .action-btn .edit-icon {
    padding: 7px;
    border: 1px solid #e3b000;
    background-color: #ffe2a357;
    width: 35px;
    height: 35px;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dashboard-table .action-btn .delete-icon {
    border: 1px solid #dc3545;
    background-color: #ffcccc;
    color: #dc3545;
    width: 35px;
    height: 35px;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dashboard-table .action-btn .edit-icon svg path {
    stroke: #e3b000;
}


/* registration-form */

.user-profile {
    position: relative;
    display: inline-block;
}

    .user-profile .profile-upload {
        position: absolute;
        right: -10%;
        top: 5%;
        height: 40px;
        width: 40px;
        border-radius: 40px;
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: #fff;
        box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    }

    .user-profile img {
        height: 150px;
        width: 150px;
        border-radius: 50%;
        border: 2px solid var(--primary-color);
    }

.avatar-upload {
    position: relative;
    max-width: 205px;
    margin: 50px auto;
}

    .avatar-upload .avatar-edit input {
        display: none;
    }

    .avatar-upload .avatar-edit {
        position: absolute;
        right: 25px;
        z-index: 1;
        top: 10px;
    }

    .avatar-upload .avatar-preview > div {
        width: 100%;
        height: 100%;
        border-radius: 100%;
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
        overflow: hidden;
        border: 6px solid #f8f8f8;
        margin: auto;
    }

    .avatar-upload .avatar-preview {
        max-width: 192px;
        position: relative;
        border-radius: 100%;
        aspect-ratio: 1 / 1;
        box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1);
    }

.search-filter-button .search-button:hover {
    color: #fff;
    background-color: #007bff;
    /*    background-color: #097b39;*/
    border-color: #007bff;
}

.search-filter-button .search-button {
    height: 40px;
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color);
    color: #fff;
    border-radius: 5px;
    padding: 8px 25px;
}

.cancel-btn:hover {
    background-color: #989898;
    color: #fff;
}

.cancel-btn {
    height: 40px;
    border: 1px solid;
    color: #989898;
    border-radius: 5px;
    padding: 8px 25px;
    background: #fff;
}

.search-filter-button.saveBtn {
    display: flex;
    justify-content: flex-end;
    margin-top: 25px;
    align-items: center;
    gap: 15px;
}

.age-inputs input {
    margin: 24px 10px;
}

.age-inputs input {
    width: 35px;
    height: 40px;
    text-align: center;
    font-size: 15px; /* Adjust as needed */
    border: 2px solid #ccc;
    margin: 0 3px;
    outline: none;
}
.age-inputs input:focus {
    border-color: #007bff; /* Change border color on focus */
}



.age-inputss input:valid {
    color: black; /* Show entered value in black */
}

.age-inputs input:invalid {
    color: transparent; /* Hide invalid input */
}

.date input {
    background-image: url(../images/dateImg.svg);
    background-repeat: no-repeat;
    background-position: right;
}

.dashboardBodySection .dashboard-table .form-check-input {
    font-size: 20px;
}

.viewuser-name {
    background-color: var(--primary-color);
    max-height: 6rem;
    min-height: auto;
}

    .viewuser-name:last-child {
        color: #ffff;
    }

.search-filter .select2-container {
    width: 100% !important;
}

.select2-container--default .select2-selection--single {
    background-color: #fff;
    border: 1px solid #ced4da;
    border-radius: 4px;
    height: 48px;
    border-radius: 8px;
    padding: .69rem .75rem;
}

    .select2-container--default .select2-selection--single .select2-selection__arrow {
        height: 40px;
        position: absolute;
        top: 1px;
        right: 1px;
        width: 40px;
    }

        .select2-container--default .select2-selection--single .select2-selection__arrow b {
            border: none;
        }

            .select2-container--default .select2-selection--single .select2-selection__arrow b::after {
                content: " ";
                display: block;
                width: 100%;
                padding: 0.375rem 2.25rem 0.375rem 0.75rem;
                background-image: url(../images/arrow-down.svg);
                background-repeat: no-repeat;
            }
.Employeedashbard-card-bg {
    background-color: var(--background-color);
    padding: 20px;
    border-radius: 10px;
    /* height: calc(100vh - 225px); */
    border: 1px solid #E2E8F0;
}
table#FEGLItable tbody tr td:nth-child(9),
table#FEGLItable tbody tr td:nth-child(10),
table#FEGLItable tbody tr td:nth-child(11) {
    text-align: right;
}
#reportbody {
    font-family: Calibri,sans-serif;
    background-color: #e6e6e6;
}

.dataTables_wrapper .dataTables_filter input {
    margin-bottom: 4px;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.dashboard-table table.dataTable thead th, table.dataTable thead td {
    border-bottom: none;
}

.dashboard-table .dataTables_wrapper.no-footer .dataTables_scrollBody {
    border-bottom: none;
}


.dashboard-table .action-btn .btn {
    padding: 0;
}

.dashboard-table .dataTables_wrapper .dataTables_paginate .paginate_button.current,
.dashboard-table .dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
    background: #007cba;
    color: #fff !important;
    padding: 4px 12px;
}


.custom-dropdown-dash .ulBock {
    background-color: #007cba;
    border-radius: 5px;
}

    .custom-dropdown-dash .ulBock a {
        color: #fff;
    }

    .custom-dropdown-dash .ulBock li {
        padding-left: 30px;
        padding-right: 0;
    }

.dashboard-table .action-btn .edit-icon {
    margin-right: 7px;
}
#iraPayout {
    display: inline-block;
    width: 23%;
    font-size: 1rem;
    line-height: 1.5;
    font-weight: 400;
    color: #212529;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: .375rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    padding: .375rem .75rem;
}
#iraPayout:focus {
    border-color: var(--primary-color);
    box-shadow: none;
}

.dataTables_scrollHeadInner{
    width:100% !important
}
/*#iraErrorMessage {
    margin-left: 200px;
}*/
.form-switch-lg .form-check-input {
    height: 2em; /* Increase the height */
    width: 3.5em; /* Increase the width proportionally */
    /* Ensure the inner circle/thumb remains centered (Bootstrap handles this by default) */
}

.glossy-pdf-btn {
    display: inline-block;
    padding: 10px 30px;
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    text-shadow: 0 -1px 0 #333;
    cursor: pointer;
    border: 1px solid #005f99;
    border-radius: 50px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    background-color: #007acc;
    background-image: linear-gradient(to bottom, #0099e6, #005f99);
    position: fixed;
    overflow: hidden;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

    .glossy-pdf-btn::before {
        content: '';
        position: absolute;
        top: 2px;
        left: 2px;
        width: calc(100% - 4px);
        height: 50%;
        background: linear-gradient(to bottom, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.2));
        border-radius: 48px 48px 0 0;
    }

    .glossy-pdf-btn:hover {
        background-color: #004c80;
        background-image: linear-gradient(to bottom, #007acc, #004c80);
        transform: translateY(-1px);
    }