* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #f1f1f1 !important;
    font-family: Asap, sans-serif !important;
}

::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}

::-webkit-scrollbar-track {
    background-color: grey;
    border-radius: 8px;
}

::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 5px;
}

.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    background-color: white;
    padding-top: 15px;
    width: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

    .sidebar a {
        color: #343a40;
        text-decoration: none;
        display: block;
        text-align: left;
    }

        .sidebar a.dashboard-link {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            transition: background-color 0.3s ease;
            position: relative;
        }

            .sidebar a.dashboard-link.active,
            .sidebar a.dashboard-link:hover {
                background-color: #504389;
            }

                .sidebar a.dashboard-link.active::before {
                    content: "";
                    position: absolute;
                    top: 0;
                    left: 0;
                    width: 100%;
                    height: 100%;
                    border-radius: 50%;
                    background-color: rgba(255, 255, 255, 0.2);
                    z-index: -1;
                }

                /* Change the image color to white for active and hover states */
                .sidebar a.dashboard-link.active img,
                .sidebar a.dashboard-link:hover img {
                    filter: brightness(0) invert(1);
                }

        /* Default image style */
        .sidebar a img {
            height: 50px;
            transition: filter 0.3s ease;
        }
/* Sidebar CSS End */

.rounded-prf-img {
    width: 50px !important;
    height: 50px !important;
    border-radius: 50% !important;
    object-fit: cover !important;
}

.evaluation-font {
    font-family: Assistant;
    font-weight: 600;
    font-size: 18px;
    color: #484b51;
}

.add-question-font {
    font-family: Assistant;
    font-weight: 600;
    font-size: 20px;
    color: #000000;
}

.main-content {
    margin-left: 80px;
    padding: 20px;
    width: calc(100% - 80px);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: #f5f5f5;
}

    .main-content h3 {
        color: #1b1c1e;
        font-size: 28px;
        font-family: "Assistant" !important;
        font-weight: 700;
    }

.dropend .dropdown-toggle::after {
    display: none !important;
}

.dropdown-toggle::after {
    display: inline-block;
    margin-left: 0.255em;
    vertical-align: 0.255em;
    content: "";
    border-top: 0.4em solid !important;
    border-right: 0.4em solid transparent !important;
    border-bottom: 0 !important;
    border-left: 0.4em solid transparent !important;
}

a.nav-link.logo-img {
    margin: 0px 0px;
}

li a.dropdown-item-divider {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

/* Table CSS Start */
table thead {
    background: #f5f5f5;
    color: #484b51;
}

table tbody {
    color: #484b51;
}

table {
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 100%;
    table-layout: auto;
}

    table thead th:first-child {
        border-top-left-radius: 10px;
    }

    table thead th:last-child {
        border-top-right-radius: 10px;
    }

    table tfoot td:first-child {
        border-bottom-left-radius: 10px;
    }

    table tfoot td:last-child {
        border-bottom-right-radius: 10px;
    }

    table > tbody {
        vertical-align: middle !important;
    }

    table > thead {
        vertical-align: middle !important;
    }

.table-responsive {
    overflow-x: auto;
    width: 100%;
    display: block;
}

table.dataTable {
    margin: 10px auto 30px auto !important;
}

    table.dataTable thead {
        border: 1px solid #e9e9e9;
        border-top-left-radius: 12px;
        border-top-right-radius: 12px;
        background-color: #f9f9f9;
        overflow: hidden;
    }

    table.dataTable tbody {
        border: 1px solid #e9e9e9;
        border-top: none;
        border-bottom-left-radius: 12px;
        border-bottom-right-radius: 12px;
        overflow: hidden;
    }

        table.dataTable tbody tr {
            height: 70px;
        }

            table.dataTable tbody tr:last-child {
                border-bottom: 1px solid #eee;
            }

table tbody tr td,
table thead tr th {
    font-size: 14px;
}

table#dataTable tbody td,
table#dataTable thead th {
    text-align: left;
    vertical-align: middle;
}
/* Table CSS End */

/* Switch CSS Start */
.switch {
    position: relative;
    display: inline-block;
    width: 55px;
    height: 22px;
}

    .switch input {
        opacity: 0;
        width: 0;
        height: 0;
    }

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.4s;
    border-radius: 34px;
}

    .slider:before {
        position: absolute;
        content: "";
        height: 17px;
        width: 17px;
        left: 3px;
        bottom: 3px;
        background-color: white;
        transition: 0.4s;
        border-radius: 50%;
    }


input:checked + .slider {
    background-color: #50C878; /* Emerald Green */
}


    input:checked + .slider:before {
        transform: translateX(34px);
    }

.status-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.4s;
    border-radius: 34px;
}

    .status-slider:before {
        position: absolute;
        content: "";
        height: 17px;
        width: 17px;
        left: 3px;
        bottom: 3px;
        background-color: white;
        transition: 0.4s;
        border-radius: 50%;
    }

input:checked + .status-slider {
    background-color: #50C878;
}

    input:checked + .status-slider:before {
        transform: translateX(34px);
    }
/* Switch CSS End */

.content-box {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
    flex-grow: 1;
    min-height: calc(100vh - 106px);
    width: 100%;
}

/* Pagination CSS Start */
.row {
    margin-right: 0px !important;
    margin-left: 0px !important;
    margin-top: 20px !important;
}

.dt-paging {
    display: flex;
    justify-content: end;
}

.dt-info {
    display: flex;
    justify-content: center;
}
/* Pagination CSS End */

/* Custom styles for the button */
.btn-location {
    background-color: #6600cc !important;
    color: #fff !important;
    border: none !important;
    padding: 8px 15px;
    border-radius: 10px;
    position: relative !important;
    height: 40px !important;
}

.btn-border {
    border-right: 2px solid white !important;
}

.btn-location-split {
    border-left: 1px solid white;
    padding-left: 10px;
}

.location-drop {
    width: auto;
    height: 40px;
    padding: 5px;
}

    .location-drop .dropdown-item {
        padding: 0px 10px;
        font-size: 14px;
    }

.btn-width {
    width: 137px;
}
/* Button CSS End */

.dt-search label {
    display: none;
}

div.dt-container .dt-paging .dt-paging-button {
    padding: 0px !important;
}

.dt-paging-button.current {
    background: #4c416b !important;
    color: white !important;
}

.dt-paging-button {
    background: whitesmoke !important;
}

div.dt-container select.dt-input {
    padding: 3px !important;
}

.form-group input::placeholder {
    color: #6c757d;
}

/* Button CSS Start */
.btn-save {
    width: 180px;
    height: 40px;
    background-color: #6E00B3;
    color: white;
    border-radius: 7px;
    border: 1px;
}

.btn-cancel {
    width: 180px;
    height: 40px;
    background-color: white;
    color: #6E00B3;
    border-radius: 7px;
    border: 1px solid #6E00B3;
}

.add-qusbtn {
    width: 100%;
    height: 40px;
    /*background-color: #4c416b;*/
    color: white;
    border-radius: 7px;
    border: 1px solid grey;
}

.emp-perf-report-exp-btn, .trg-perf-report-exp-btn {
    width: 180px;
    height: 40px;
    background-color: #6600cc;
    color: white;
    border-radius: 7px;
    border: 1px solid grey;
}
/* Button CSS End */

.location-dropdown {
    background-color: #fff;
    color: #6c757d;
    border: 1px solid #ced4da;
    width: 280px;
    height: 40px;
    margin-right: 10px;
}

    .location-dropdown.job-dropdown {
        margin-right: 0px !important;
    }

.dropdownbtn-border {
    border: 1px solid #e4e5e7 !important;
}

.jobrole-location-dropdown,
.jobrole-department-dropdown,
.jobrole-area-dropdown {
    background-color: #fff;
    color: #6c757d;
    border: 1px solid #ced4da;
    width: 180px;
    height: 40px;
    margin-right: 10px;
}
/* Prevent background color change on hover */
.location-dropdown:hover,
.location-dropdown:focus,
.location-dropdown:active,
.location-dropdown:focus-visible,
.locat-btn:hover,
.locat-btn:focus,
.locat-btn:active,
.locat-btn:focus-visible {
    background-color: #fff !important;
    /* color: #6c757d !important; */
    border: 1px solid #e4e5e7 !important;
    box-shadow: none !important;
}

.locat-btn {
    border: 1px solid #e4e5e7 !important;
}

.picker-width {
    width: 100% !important;
}
/* Custom styles for the dropdown */
.location-dropdow-btn {
    width: 100%;
}

.difflevel-dropdow-btn {
    width: 350px;
    border: 1px solid #e2e0eb !important;
    border-radius: 8px;
}

.extension-dropdow-btn {
    height: 38px;
    width: 100%;
}

.map-dropdown {
    width: 100%;
    background-color: #fff;
    color: #6c757d;
    border: 1px solid #ced4da;
    width: 100%;
    height: 40px;
    margin-right: 10px;
}

.location-dropdownmenu {
    width: 100%;
    max-height: 240px;
    overflow-y: auto;
}

.popup-department-dropdownmenu {
    width: 100%;
    max-height: 240px;
    overflow-y: auto;
}

.dropdown-item:hover {
    background-color: #f8f9fa;
    color: #000;
}

.dropdown-header {
    padding: 8px 16px;
    background-color: #f8f9fa;
}

.search-box-wrapper {
    position: relative;
}

.search-box {
    width: 100%;
    padding-left: 30px;
    border: none;
    outline: none;
}

.search-icon {
    position: absolute;
    left: 10px;
    top: 10px;
    color: #6c757d;
    width: 20px;
    height: 20px;
}

.button-text {
    float: left;
}

.dropdown-icon {
    float: right;
    margin-left: auto;
}

.locat-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

    .locat-btn::after {
        right: 9px;
        top: 17px;
        position: absolute;
    }

.difflevel-btn::after {
    right: 9px;
    top: 17px;
    position: absolute;
}

div.dt-container .dt-paging .dt-paging-button.current,
div.dt-container .dt-paging .dt-paging-button.current:hover {
    color: white !important;
}
/* Search CSS Start */
.search-container {
    position: relative;
    width: 100%;
    max-width: 331px;
}

.job-search .search-container {
    max-width: 100% !important;
}

.dropdown-header .search-container {
    max-width: 100% !important;
}

.search-container input[type="text"] {
    width: 100%;
    padding: 8px 15px 8px 40px;
    border-radius: 8px;
    background: #f2f2f2;
    height: 40px;
}

.search-container .search-icon {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #aaa;
}

.locate-dropbox .search-container .search-icon {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #aaa;
}

.locate-dropbox .search-container input[type="text"] {
    width: 100%;
    padding: 8px 15px 8px 40px;
    border-radius: 8px;
    background: #f5f5f5;
    /*height: 32px;*/
}

.search-container input[type="text"]:focus {
    outline: none;
    border-color: #ccc;
}
/* Search CSS End */

/* Menu CSS Start */
.custom-tabs-container {
    position: relative;
}
.menu-tooltip-left {
    position: relative;
}

    .menu-tooltip-left:hover::after {
        content: attr(data-title);
        position: absolute;
        left: 100%;
        top: 50%;
        transform: translateY(-50%);
        margin-left: 5px;
        background: #000;
        color: #fff;
        padding: 4px 8px;
        font-size: 14px;
        border-radius: 3px;
        white-space: nowrap;
        pointer-events: none;
        opacity: 1;
        z-index: 99999;
        animation: fadeTooltip 0.8s forwards;
    }

@keyframes fadeTooltip {
    0% {
        opacity: 1;
    }

    70% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}
/* Menu CSS End */

/* Label CSS for Tooltip Start */
.img-tooltip-bottomright {
    position: relative;
}

    .img-tooltip-bottomright:hover::after {
        content: attr(data-title);
        position: absolute;
        left: auto;
        right: 100%;
        top: 100%;
        margin-right: 8px;
        margin-top: 5px;
        background: #000;
        color: #fff;
        padding: 6px 10px;
        font-size: 14px;
        border-radius: 4px;
        width: 180px;
        white-space: normal;
        word-wrap: break-word;
        pointer-events: none;
        z-index: 99999;
        opacity: 1;
        animation: fadeTooltip 2.4s forwards;
    }

@keyframes fadeTooltip {
    0%, 70% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}
/* Label CSS for Tooltip End */

.divider {
    width: 1px;
    height: 30px;
    background-color: #e5e7eb;
    margin: 0 10px;
}

.active-tab {
    border-bottom: 3px solid #00a48b;
    position: relative;
}

    .active-tab::after {
        content: "";
        position: absolute;
        bottom: 50%;
        left: -7%;
        transform: rotate(90deg);
        border-width: 6px;
        border-style: solid;
        border-color: #fff transparent transparent transparent;
    }
/* New css Start */

/* Vertically center dropdown content */
.dropdown-menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

/* Back arrow styling */
.back-arrow {
    display: block;
    width: 100%;
    text-align: left;
    margin-bottom: 10px;
}

    .back-arrow img {
        width: 16px;
        height: auto;
    }

/* Pagination Start */
.page-item.active .page-link,
.page-item.active .page-link:hover {
    background-color: #6E00B3;
    border-color: #6E00B3;
    border-radius: 4px;
    color: white !important;
}

/* Style for non-active page links */
.page-link {
    background-color: white;
    color: black !important;
    border-color: #dee2e6;
    padding: 5px 10px !important;
    font-size: 14px !important;
}

    .page-link:hover {
        background-color: #f8f9fa;
        color: black;
    }

.pagination .page-item {
    margin-right: 10px;
}

.page-item:first-child,
.page-item:last-child {
    margin-right: 10px;
}

/* Sidebar Dropdown CSS Start */
ul.dropdown-menu.drop-sidebar.active-tab.show.master-dropdown {
    transform: translate(70px, -90px) !important;
}

ul.dropdown-menu.drop-sidebar.active-tab.show.user-dropdown {
    transform: translate(70px, -5px) !important;
}

ul.dropdown-menu.drop-sidebar.active-tab.show.training-dropdown {
    transform: translate(70px, -24px) !important;
}

ul.dropdown-menu.drop-sidebar.active-tab.show.content-dropdown {
    transform: translate(70px, -20px) !important;
}

ul.dropdown-menu.drop-sidebar.active-tab.show.setting-dropdown {
    transform: translate(70px, 6px) !important;
}


/* Sidebar Dropdown CSS End */
.modal-act-yes-btn {
    width: 150px;
    height: 40px;
    border-radius: 8px;
    background-color: #007bff !important;
    color: white !important;
}

.modal-act-no-btn {
    width: 150px;
    height: 40px;
    border-radius: 8px;
    border: 1px solid #007bff !important;
    color: #007bff !important;
}

.active-sop-doc-font {
    font-family: Assistant;
    font-size: 22px;
    font-weight: 700;
    color: #007bff;
}

.active-sop-subheader-font {
    font-family: Assistant;
    font-size: 16px !important;
    font-weight: 600;
    color: #7f8187;
}

.dropdown-menu.dropdown-checkbox {
    max-height: 200px;
    width: 280px;
    overflow-y: auto;
    padding: 10px;
}

    .dropdown-menu.dropdown-checkbox.department-dropdown-responsive {
        max-height: 200px;
        width: auto;
        overflow-y: auto;
        padding: 10px;
    }

    .dropdown-menu.dropdown-checkbox.quest-bank-trg-responsive-dropdownmenu {
        max-height: 200px;
        width: 280px;
        overflow-y: auto;
        padding: 10px;
    }

    .dropdown-menu.dropdown-checkbox.quest-bank-topic-responsive-dropdownmenu {
        max-height: 200px;
        width: 280px;
        overflow-y: auto;
        padding: 10px;
    }

    .dropdown-menu.dropdown-checkbox.emp-perf-emp-dropdown-responsive {
        max-height: 200px;
        width: 160px;
        overflow-y: auto;
        padding: 10px;
    }

    .dropdown-menu.dropdown-checkbox.trg-perfm-dept-responsive-dropdown-menu {
        max-height: 200px;
        width: 160px;
        overflow-y: auto;
        padding: 10px;
    }

    .dropdown-menu.dropdown-checkbox.trg-perfm-trg-responsive-dropdown-menu {
        max-height: 200px;
        width: 160px;
        overflow-y: auto;
        padding: 10px;
    }

    .dropdown-menu.dropdown-checkbox.emp-perf-dept-dropdown-responsive {
        max-height: 200px;
        width: 160px;
        overflow-y: auto;
        padding: 10px;
    }

    .dropdown-menu.dropdown-checkbox.emp-perf-trg-status-dropdown-responsive {
        max-height: 200px;
        width: auto;
        overflow-y: auto;
        padding: 10px;
    }

    .dropdown-menu.dropdown-checkbox.jobrole-dropmenu {
        max-height: 200px;
        width: auto;
        overflow-y: auto;
        padding: 10px;
    }

    .dropdown-menu.dropdown-checkbox.workflow-dropmenu {
        max-height: 200px;
        width: auto;
        overflow-y: auto;
        padding: 10px;
    }

    .dropdown-menu.dropdown-checkbox.map-dropmenu {
        max-height: 240px;
        width: 100%;
        overflow-y: auto;
        padding: 10px;
    }

.form-check .form-check-input:checked {
    background-color: #6600cc !important;
    border-color: #6600cc !important;
}

.drop-shadow {
    box-shadow: 3px 3px 3px 0px #00000030;
    border-radius: 14px !important;
}

.dropdown-bgcolor .location-dropdown {
    background-color: white !important;
    color: #484b51 !important;
}

/* Modal CSS Start */
.modal-cancel-btn,
.modal-delete-btn {
    width: 180px;
    height: 40px;
    border-radius: 8px;
}

.modal-assign-btn {
    width: 110px;
    height: 40px;
    border-radius: 8px;
    background-color: #6600cc !important;
    color: white !important;
}

.modal-assign-cancel-btn {
    width: 110px;
    height: 40px;
    border-radius: 8px;
    border: 1px solid #6E00B3 !important;
    color: #6E00B3 !important;
}

.modal-cancel-btn {
    border: 1px solid #61646b !important;
}

.modal-body h4 {
    font-size: 20px !important;
}

.modal-body p {
    font-size: 18px !important;
}

.modal-body .body-font p,
.modal-body .body-font div p {
    font-size: 16px !important;
    font-weight: 600;
    margin-bottom: 0px !important;
    color: #000000;
    font-family: Assistant;
}
/* Modal CSS End */

/* Input TextBox CSS Start */

/* Container to keep the input and label inline */
.floating-label-inline {
    position: relative;
    width: auto;
}

    /* Floating label styling */
    .floating-label-inline label {
        position: absolute;
        top: 50%;
        left: 12px;
        transform: translateY(-50%);
        transition: all 0.2s ease-in-out;
        pointer-events: none;
        color: #94979e;
        font-size: 14px;
        font-weight: 500;
        font-family: Asap;
    }

        .floating-label-inline label.textarea-label {
            top: 10%;
        }
    /* When input has focus or is not empty, move label to top */
    .floating-label-inline input:focus + label,
    .floating-label-inline input:not(:placeholder-shown) + label {
        top: 0;
        left: 12px;
        transform: translateY(-50%);
        font-size: 12px;
        background-color: white;
    }

    .floating-label-inline textarea:focus + label,
    .floating-label-inline textarea:not(:placeholder-shown) + label {
        top: 0;
        left: 12px;
        transform: translateY(-50%);
        font-size: 12px;
        background-color: white;
    }

    /* Input field styling */
    .floating-label-inline input {
        width: 100%;
        border: 1px solid #e4e5e7;
        border-radius: 5px;
        outline: none;
        height: 38px;
        padding-left: 10px;
        font-size: 16px;
        color: #1b1c1e;
        font-weight: 400;
        font-family: Asap;
    }

    .floating-label-inline textarea {
        width: 100%;
        border: 1px solid #e4e5e7;
        border-radius: 5px;
        outline: none;
        /* height: 38px; */
        padding-left: 10px;
        font-size: 14px;
        color: #1b1c1e;
        padding-top: 8px;
    }

    .floating-label-inline.training-textarea textarea {
        height: 125px !important;
    }

    .floating-label-inline.content-textarea textarea {
        height: 100px !important;
    }
    /* Focus effect on input field */
    .floating-label-inline input:focus,
    .floating-label-inline textarea:focus {
        border: 1px solid #e4e5e7;
    }

/* Required label with asterisk */
.required-label::after {
    content: "*";
    color: red;
    padding-left: 4px;
}

.required-asterisk {
    color: red !important;
    margin-left: 2px;
}

.drop-color {
    color: #94979e !important;
    font-size: 14px !important;
}

    .drop-color option {
        font-size: 14px !important;
    }

.form-control:focus {
    box-shadow: none !important;
}
/* Input TextBox CSS End */
.location-dropdownmenu li a.dropdown-item {
    font-size: 14px;
}

.form-select:focus {
    border: 1px solid #e4e5e7 !important;
    box-shadow: none !important;
}

.heading-color {
    color: #000000;
    font-size: 20px;
    font-weight: 600;
}

/* Upload Image CSS Start */
.upload-section {
    margin-left: 20px;
}

.upload-container {
    display: inline-block;
    cursor: pointer;
}

.file-input {
    display: none;
}

.upload-content {
    display: flex;
    justify-content: center;
    align-items: end;
    gap: 10px;
}

.upload-box {
    width: 115px;
    height: 119px;
    border: 1px dashed black;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    color: #4a436c;
    background-color: #f0eff5; /* Light background color */
}

.index-upload-box {
    width: 40px;
    height: 40px;
    /*    border: 1px dashed black;*/
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    color: #4a436c;
    background-color: #f0eff5; /* Light background color */
}

.upload-training-box {
    width: 115px;
    height: 119px;
    border: 2px dashed #f5a0c5;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    color: #4a436c;
    background-color: #fde8f1;
}

    .upload-training-box h1 {
        font-family: Assistant;
        font-size: 36px;
        font-weight: 700;
        color: #b9135b;
    }

.upload-box img {
    width: 32px;
    margin-bottom: 5px;
}

.upload-cc-image {
    width: 100%;
    height: 100%;
    object-fit: fill;
    display: block;
}

.upload-box span {
    font-size: 12px;
    text-align: center;
}

.upload-content p {
    font-size: 12px;
    color: #6c757d;
    margin: 0;
}

    .upload-content p.format-color {
        font-size: 14px;
        font-weight: 400;
        color: #94979e;
    }
/* Upload Image CSS End */

/* Employee CSS Start */
.dropdown-menu.dropdown-checkbox.reporting-menu {
    max-height: 240px;
    width: 100%;
    overflow-y: auto;
    padding: 10px;
}

.menu-font {
    font-size: 14px;
}
/* Employee CSS End */

/* Radio Button CSS Start */

/* Hide the default radio button */
input[type="radio"] {
    appearance: none;
    width: 16px;
    height: 16px;
    border: 1.5px solid #d0d0d0;
    border-radius: 50%;
    position: relative;
    top: 2px;
}

    /* Style the checked radio button */
    input[type="radio"]:checked {
        border-color: #504389;
    }

        /* Create the red dot inside when checked */
        input[type="radio"]:checked::before {
            content: "";
            display: block;
            width: 10px;
            height: 10px;
            background-color: #504389;
            border-radius: 50%;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }

.option-input input[type="radio"] {
    appearance: none;
    width: 20px;
    height: 20px;
    border: 1px solid #94979e;
    border-radius: 50%;
    position: relative;
    top: 2px;
}

    /* Style the checked radio button */
    .option-input input[type="radio"]:checked {
        border-color: #94979e;
    }

        /* Create the red dot inside when checked */
        .option-input input[type="radio"]:checked::before {
            content: "";
            display: block;
            width: 14px;
            height: 14px;
            background-color: #94979e;
            border-radius: 50%;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-48%, -50%);
        }
/* Radio Button CSS End */

/* Checkbox Hover CSS Start */
li:hover .form-check-label,
li:hover span {
    color: #6600cc;
}
/* Checkbox Hover CSS End */

.close-img {
    width: 22px;
    height: 22px;
}

.sidebar a.profile-img {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: 0;
    width: 100%;
}

    .sidebar a.profile-img img {
        height: 44px;
        margin-bottom: 10px;
    }
/* Set fixed width for dropdown */

.dropdown-menu.training-dropmenu {
    width: auto;
    min-width: 150px;
    max-width: 200px;
    overflow: hidden;
    margin-right: 30px !important;
    margin-top: 36px !important;
}

/* Adjust positioning to ensure the dropdown doesn't go out of bounds */

.dropdown-menu.training-dropmenu {
    position: absolute;
    right: 0;
}

    /* Optional: You can adjust the dropdown padding */

    .dropdown-menu.training-dropmenu a {
        padding: 5px 10px;
        border-bottom: 1px solid #ddd; /* Add a light border */
    }

        .dropdown-menu.training-dropmenu a:last-child {
            border-bottom: none !important;
        }
/* No Data CSS Start */
.nodata-img {
    width: 100px;
    height: 100px;
}

.nodata-font {
    font-size: 20px;
    font-weight: 700;
    color: #1b1c1e;
    font-family: Assistant;
}

.nodata-text {
    font-size: 18px;
    font-weight: 600;
    color: #484b51;
    font-family: Assistant;
}
/* No Data CSS End */

/* Sequence Number CSS Start */
.input-wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.input-container {
    position: relative;
    width: 100%;
}

.form-control.seq-num {
    width: 100%;
    padding: 8px 40px;
    text-align: center;
}

.minus-icon,
.plus-icon {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.minus-icon {
    left: 10px;
}

.plus-icon {
    right: 10px;
}

    .minus-icon img,
    .plus-icon img {
        width: 24px;
        height: 24px;
    }
/* Sequence Number CSS End */

/* File Upload Icon CSS Start */
.custom-file-upload {
    border: 1px solid #e4e5e7;
    border-radius: 5px;
    padding: 8px 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    width: 100%;
    color: #94979e;
    font-size: 14px;
    height: 38px;
}

    .custom-file-upload input[type="file"] {
        display: none;
    }

.upload-text {
    margin: 0;
}

.upload-icon .upload-img {
    width: 20px;
    height: 20px;
}
/* File Upload Icon CSS End */

/* Upload Content CSS Start */
.upload-header {
    background-color: #ffffff;
    padding: 10px 15px;
    border-radius: 12px;
    font-weight: bold;
    border: 1px solid #dee2e6;
    height: 242px;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

    .upload-header h6 {
        font-family: Assistant;
        font-weight: 700;
        font-size: 18px;
        color: #1b1c1e;
        margin-top: 0;
    }

    .upload-header p {
        font-family: Assistant;
        font-weight: 600;
        font-size: 16px;
        color: #61646b;
        margin-bottom: auto;
    }

.upload-area {
    border: 1px dashed #7f00ff;
    border-radius: 12px;
    width: auto;
    height: 128px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    cursor: pointer;
    color: #6c757d;
    background-color: #f0eff5;
    transition: background-color 0.3s;
    margin-top: auto;
    margin-bottom: 5px;
}

    .upload-area.library-bkg {
        background-color: #fef3e6;
    }

    .upload-area.content-bkg {
        background-color: #fde8f1;
    }

    .upload-area.quiz-bkg {
        background-color: #e6fff9;
    }

    .upload-area input {
        display: none;
    }

    .upload-area img {
        width: 30px;
        height: 30px;
        margin-top: 10px;
    }

    .upload-area .import-font {
        font-family: Assistant;
        font-weight: 700;
        font-size: 18px;
        color: #7f00ff;
    }

    .upload-area .drag-font {
        font-family: Assistant;
        font-weight: 600;
        color: #61646b;
        font-size: 16px;
    }
/* Upload Content CSS End */

/* Modal Library CSS Start */
.modal-box {
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #fff;
    padding: 15px;
    height: 350px;
    display: flex;
    flex-direction: column;
}

.content-library-list {
    max-height: 200px;
    overflow-y: auto;
}

img.img-fluid.arrow-img {
    width: 24px;
    height: 24px;
}

.content-border {
    border-bottom: 1px solid #e4e5e7;
}

    .content-border span,
    .content-border p {
        color: #484b51;
        font-weight: 400;
        font-size: 16px !important;
    }

.modal-box h6 {
    font-weight: 700;
    font-family: Assistant;
    font-size: 18px;
    color: #1b1c1e;
}
/* Modal Library CSS End */

.detail-color {
    color: #484b51;
}

/* Employee Card CSS Start */
.card {
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.button-group button {
    font-size: 16px;
    font-weight: 600;
    font-family: Assistant;
}

.desig-bg-color {
    border: 1px solid #4aa1ff !important;
    background: #dbecff !important;
    color: #4aa1ff;
    border-radius: 4px;
}

.depart-bg-color {
    border: 1px solid #ffb226 !important;
    background: #ffedcc;
    color: #ffb226;
    border-radius: 4px;
}

.train-bg-color {
    border: 1px solid #3db3c5 !important;
    background: #e3fcff;
    color: #3db3c5;
    border-radius: 4px;
}

.button-group button {
    height: 30px;
    width: 180px;
}
/* Employee Card CSS End */

/* Designation Modal CSS Start */
.emp-font {
    font-family: Assistant;
    font-weight: 600;
    font-size: 20px;
    color: #000000;
}
/* Designation Modal CSS End */

/* Training Modal CSS Start */
.training-font div p {
    font-family: Assistant;
    font-weight: 600;
    font-size: 16px !important;
    color: #000000;
}
/* Training Modal CSS End */

/* Tabs CSS Start */
.nav-tabs .nav-link.active {
    border-bottom: 2px solid #7f00ff !important;
    color: #7f00ff !important;
    background-color: transparent !important;
}

.nav-link:focus, .nav-link:hover {
    color: #7f00ff !important;
}

.nav-tabs.training-tabs,
.nav-tabs.training-tabs .nav-link.active {
    border-bottom: none !important;
    opacity: 1;
}

    .nav-tabs.training-tabs .nav-link {
        opacity: 0.5;
    }

.systemusertab .nav-link.active {
    border-bottom: 1px solid #6600cc !important;
    color: #6600cc !important;
    background-color: transparent !important;
    position: relative !important;
}

    .systemusertab .nav-link.active::after {
        content: "▼";
        position: absolute;
        bottom: -12px;
        left: 50%;
        transform: translateX(-50%);
        color: #6600cc;
        font-size: 10px;
    }

.systemusertab li a {
    font-family: Assistant;
    font-size: 18px;
    font-weight: 600;
    color: #b9135b;
}

.nav-tabs .nav-link {
    border: none !important;
    color: #333;
    transition: color 0.3s;
}
/* Tabs CSS End */

/* Timeline CSS Start */
.timeline {
    position: relative;
    padding: 20px 0;
}

    .timeline::before {
        content: "";
        position: absolute;
        left: 33px;
        top: 30px;
        height: 100% !important;
        border: 1px solid #e2e0eb;
        z-index: 0;
    }

.timeline-item {
    position: relative;
    margin-left: 60px;
    margin-bottom: 20px;
}

    .timeline-item:last-child {
        margin-bottom: 0;
    }

    .timeline-item::before {
        content: "";
        position: absolute;
        left: -36px;
        top: 10px;
        width: 20px;
        height: 20px;
        border-radius: 50%;
        border: 2px solid #fde8f1;
        z-index: 1;
    }

    /*.timeline-item.bg-maroon::before {
        background: #ec468e;
    }

    .timeline-item.bg-orange::before {
        background: #f9a546;
    }

    .timeline-item.bg-blue::before {
        background: #007bff;
    }

    .timeline-item.bg-purple::before {
        background: #4a436c;
    }

    .timeline-item.bg-green::before {
        background: #4caf50;
    }*/
    .timeline-item::before {
        background: var(--item-color, #4a436c); /* default to black if not set */
    }

    .timeline-item.bg-blackdefault::before {
        background: #4a436c;
    }

    .timeline-item h6 {
        font-familt: Assistant;
        font-size: 18px;
        font-weight: 700;
        color: #484b51;
        margin-bottom: 4px;
    }

    .timeline-item p {
        font-family: Assistant;
        font-size: 16px;
        font-weight: 600;
        color: #94979e;
        margin: 0;
    }
/* Timeline CSS End */

/* Card CSS Start */
.header-font {
    font-family: Assistant;
    font-weight: 700;
    font-size: 20px;
    color: #000000;
}

.headbody-font {
    font-family: Assistant;
    font-weight: 600;
    font-size: 18px;
    color: #61646b;
}

.emp-dashboard-font {
    font-family: Assistant;
    font-size: 24px;
    font-weight: 700;
}

.manager-font {
    color: #01cb9c;
}

.emp-mood-font {
    font-family: Assistant;
    font-size: 14px;
    font-weight: 600;
    color: #94979e;
}

.emp-dept-font {
    font-family: Assistant;
    font-size: 20px;
    font-weight: 600;
    color: #94979e;
}

.date-font {
    font-family: Assistant;
    font-size: 16px;
    font-weight: 600;
    color: #484b51;
}

.card-header {
    background-color: transparent !important;
    font-weight: bold;
    border-bottom: 1px solid #e4e5e7 !important;
}

.card {
    border-radius: 8px;
}

.cardbody-font {
    font-family: Assistant;
    font-weight: 600;
    font-size: 14px;
    color: #94979e;
}

.cardsmall-font {
    font-family: Asap;
    font-weight: 400;
    font-size: 16px;
    color: #484b51;
}

.reporting-font {
    color: #b9135b;
}
/* Card CSS End */

.complete-btn {
    background: #e1f5e6;
    width: 100px;
    color: #2b5c34;
    font-family: Asap;
    font-size: 14px;
    font-weight: 400;
    border-radius: 4px;
    border: none;
    padding: 4px 6px 4px 6px;
}

.progress-btn {
    background: #fff9db;
    width: 100px;
    color: #5a4e3a;
    font-family: Asap;
    font-size: 14px;
    font-weight: 400;
    border-radius: 4px;
    border: none;
    padding: 4px 6px 4px 6px;
}

.notstart-btn {
    background: #f2f2f2;
    width: 100px;
    color: #4a4a4a;
    font-family: Asap;
    font-size: 14px;
    font-weight: 400;
    border-radius: 4px;
    border: none;
    padding: 4px 6px 4px 6px;
}

/* Sequnce CSS Start */
.seq-border {
    border: 1px solid #e4e5e7;
    border-radius: 5px;
    height: 38px !important;
}

.minus-img,
.plus-img {
    width: 24px;
    height: 24px;
}

.seq-txt {
    color: #94979e;
    font-size: 14px;
    font-weight: 500;
}
/* Sequnce CSS End */
.training-bkg {
    background-color: #f2f2f3;
}

/* Add Question CSS Start */
.question-container {
    border-radius: 8px;
    border: 1px solid #e2e0eb;
}

.add-question-container {
    border-radius: 8px;
    border: 1px solid #e2e0eb;
    margin: 12px;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #f2e5ff;
    border: 1px solid #e8d2ff;
    padding: 10px;
    border-radius: 8px 8px 0 0;
}

.dropdowns-container {
    display: flex;
    gap: 10px;
    align-items: center;
}

.options-container {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
}

    .options-container p,
    .addimg-font {
        font-family: Assistant;
        font-weight: 600;
        font-size: 18px;
        color: #484b51;
    }

.option-input {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 10px;
    padding-bottom: 10px;
}

.action-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.mark-btn {
    background: #8981b1;
    border: 1px solid #4a436c;
    width: 67px;
    height: 34px;
    border-radius: 8px;
    color: white;
}
/* Add Question CSS End */

.training-hover span:hover,
.jobrole-hover span:hover {
    color: #b9135b;
}

.question-head-font {
    font-family: Assistant;
    font-weight: 700;
    color: #484b51;
    font-size: 20px;
}

.question-font {
    font-family: Assistant;
    font-size: 18px;
    font-weight: 600;
    color: #484b51;
}

.mark-font {
    font-family: Asap;
    font-size: 16px;
    font-weight: 400;
    color: #484b51;
}

.table-heading-font {
    font-family: Assistant;
    font-size: 24px;
    font-weight: 700;
    color: #1b1c1e;
}
/* Calender Expand Modal CSS Start */

/* Triangle Arrow */
.triangle-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -10px;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid white;
    z-index: 1;
    rotate: 270deg;
}

/* Ensure the modal positioning works */
.calendarexpand-modal {
    position: relative;
    /* width: 300px; */
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    background-color: #fff;
}

.calender-modal {
    width: 333px !important;
}

    .calender-modal .modal-content {
        border-radius: 0px !important;
    }
/* Modal content styling */
.modal-content {
    border: none;
    padding: 0;
    box-shadow: none;
}

/* Event title styling */
.event-title {
    color: #61646b;
    font-family: Assistant;
    font-size: 22px;
    font-weight: 700;
}

.dayfont {
    font-family: Assistant;
    font-size: 16px;
    font-weight: 600;
    color: #94979e;
}

.starbrd-color {
    border: 1px solid #b9135b;
}

.endbrd-color {
    border: 1px solid #4caf50;
}

.sepbrd-color {
    border: 1px solid #94979e;
}

.eventtitle-brd {
    border-bottom: 1px solid #e4e5e7;
}

.enddate-border {
    border-bottom: 1px solid #e4e5e7;
}
/* Start Date Badge */
.startdate-bg {
    background: #fde8f1;
    padding: 5px;
    color: #b9135b;
    font-family: Assistant;
    font-size: 18px;
    font-weight: 600;
}

/* End Date Badge */
.enddate-bg {
    background: #e2ffe3;
    padding: 5px;
    color: #4caf50;
    font-family: Assistant;
    font-size: 18px;
    font-weight: 600;
}

.calendermodal-bg {
    background-color: #f0eff5;
    padding: 8px;
}

.modal-head {
    font-family: Assistant;
    font-size: 20px;
    font-weight: 700;
    color: #303236;
    margin-bottom: 0px;
}
/* Trainer Info Styling */
.trainer-info img {
    width: 44px;
    height: 44px;
}

.trainer-name {
    font-family: Assistant;
    font-size: 18px;
    font-weight: 600;
    color: #1b1c1e;
}

.trainerdub-name {
    font-family: Assistant;
    font-size: 18px;
    font-weight: 600;
    color: #484b51;
}
/* Calender Expand Modal CSS End */

/* Additional custom styles */
.role-steps {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
}

.role-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #6c757d;
    font-weight: bold;
    position: relative;
    z-index: 1;
}

.start-rolestep {
    margin-right: 22px;
}

.end-rolestep {
    margin-left: 94px;
}

.role-step.active {
    color: #6f42c1;
}

.role-font {
    font-family: Assistant;
    font-size: 18px;
    font-weight: 600;
    color: #1b1c1e;
}

.role-step.active .circle {
    background-color: #4a436c;
}

.role-step .circle {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 0.5px solid #4a436c;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 5px;
}

    .role-step .circle .small-circle {
        width: 14px;
        height: 14px;
        border-radius: 50%;
        background-color: #4a436c;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

.role-line {
    position: absolute;
    width: 180px;
    height: 2px;
    background-color: #e4e5e7;
    margin: 10px 10px;
}

.userrole-table {
    padding: 10px;
    overflow-x: auto;
    width: 100%;
}

    .userrole-table thead {
        background-color: #f0eff5;
    }

        .userrole-table thead th {
            padding: 10px;
            font-family: Assistant;
            font-size: 20px;
            font-weight: 700;
            color: #484b51;
        }

    .userrole-table tbody td {
        padding: 10px;
        font-family: Asap;
        font-size: 16px;
        font-weight: 400;
        color: #484b51;
    }

        .userrole-table tbody td input.form-check-input:checked {
            background-color: #b9135b !important;
            border-color: #b9135b !important;
        }

.modal-body-header-font {
    font-family: Asap;
    font-size: 16px;
    font-weight: 400;
    color: #1b1c1e;
}

    .modal-body-header-font span {
        font-family: Assistant;
        font-size: 18px;
        font-weight: 600;
        color: #1b1c1e;
    }

button.dropdownbtn-height {
    height: 38px;
}

button.dropdown-toggle span {
    color: #94979e;
    font-size: 14px;
    font-weight: 500;
    font-family: Asap;
}

.tab-font li a {
    font-family: Assistant;
    font-size: 18px;
    font-weight: 600;
    color: #000000;
}

/* Dropdown Arrow Icon CSS Start */
.dropdownbtn-border.dropdown-toggle::after {
    color: #94979e !important;
}
/* Dropdown Arrow Icon CSS Start */

/* Question Heading Boder CSS Start */
.ques-heading-border {
    background-color: #faf9ff;
    border-bottom: 1px solid #e2e0eb;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}
/* Question Heading Boder CSS End */

/* Toast Message CSS Start */
.alert {
    border-radius: 12px !important;
    box-shadow: 0px 8px 12px 0px #091e421a;
    background-color: #ffffff !important;
    gap: 10px;
    width: 350px;
    height: 80px;
}

.toast-font .success-font {
    font-family: Assistant;
    font-size: 20px;
    font-weight: 700;
    color: #4caf50;
}

.toast-font .error-font {
    font-family: Assistant;
    font-size: 20px;
    font-weight: 700;
    color: red;
}

.toast-font .warning-font {
    font-family: Assistant;
    font-size: 20px;
    font-weight: 700;
    color: #f99f39;
}

.toast-font p {
    font-family: Assistant;
    font-size: 14px;
    font-weight: 600;
    color: #61646b;
}

.alert-dismissible .btn-close {
    padding: 0.5rem 1rem !important;
}
/* Toast Message CSS End */

/*Login CSS Start */
.loginbkg-color {
    background-color: #4a436c;
    height: 100vh;
    overflow: hidden;
}

.image-wrapper {
    position: relative;
    max-width: 450px;
    width: 100%;
}

    .image-wrapper img {
        width: 100%;
        border-radius: 15px;
    }

        .image-wrapper img.img-fluid {
            width: 100%;
            border-radius: 15px;
        }

.flowers-overlay {
    /* position: absolute; */
    position: fixed;
    top: 0;
    left: 0;
    max-width: 160px;
    z-index: 10;
}

.login-box {
    width: 100%;
    border-radius: 50px;
}

    .login-box .logo {
        max-width: 80px;
    }

div button.loginbtnbkg-color {
    border: 1px solid #4a436c !important;
    background-color: #4a436c !important;
    color: white !important;
}

.loginbtnbkg-color {
    border: 1px solid #4a436c !important;
    background-color: #4a436c !important;
    color: white !important;
}

div a.fp-color {
    font-family: Asap;
    font-size: 18px;
    font-weight: 500;
    color: #564e7e;
}

.loginwel-color h2 {
    font-family: Assistant;
    font-size: 36px;
    font-weight: 700;
    color: #1b1c1e;
}

.loginwel-color p {
    font-family: Assistant;
    font-size: 18px;
    font-weight: 600;
    color: #1b1c1e;
}

.eye-icon {
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    cursor: pointer;
    color: #888;
    font-size: 1.2rem;
}
/* Login CSS End */

/* Training Module CSS Start */
.header-font.txt-success {
    color: #4caf50;
}

.header-font.txt-warning {
    color: #ff9800;
}

.header-font.txt-notstarted {
    color: #94979e;
}
/* Training Module CSS End */

/* Content Card CSS Start */
.card-introduction {
    border-radius: 4px;
    border-left: 3px solid #4a436c;
    box-shadow: 0px 3px 4px 0px #091e421a;
}

.card-overview {
    border-radius: 4px;
    border-left: 3px solid #ec468e;
    box-shadow: 0px 3px 4px 0px #091e421a;
}

.card-customize {
    border-radius: 4px;
    border-left: 3px solid #cc9200;
    box-shadow: 0px 3px 4px 0px #091e421a;
}

.content-card .card .card-body {
    height: 70px;
}

.status-card {
    width: 180px;
    height: 90px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.complete-card {
    background-color: #e8f5e9;
    border: 1px solid #388e3c;
    border-radius: 16px;
}

.pending-card {
    background-color: #fff3e0;
    border: 1px solid #ff9800;
    border-radius: 16px;
}

.notstarted-card {
    background-color: #f5f5f5;
    border: 1px solid #9e9e9e;
    border-radius: 16px;
}

.status-card h5 {
    font-family: Assistant;
    font-size: 22px;
    font-weight: 700;
    /* color: #388e3c; */
}

.status-card-font h6 {
    font-family: Assistant;
    font-weight: 600;
    color: #61646b;
}

.status-card .complete-font {
    color: #388e3c;
}

.status-card .pending-font {
    color: #ff9800;
}

.status-card .notstarted-font {
    color: #9e9e9e;
}

.status-icon {
    font-size: 24px;
}
/* Content Card CSS End */

/* Pagination CSS Start */
.pagination-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.results-info {
    font-size: 15px;
    border: 1px solid #cdd5dd;
    border-radius: 8px;
    background-color: #ffffff;
    padding: 9px;
    margin-right: 10px;
}

.modal-update-btn {
    width: 110px;
    height: 40px;
    border-radius: 8px;
    background-color: #6E00B3 !important;
    color: white !important;
}
/* Pagination CSS End */
ul.import-btn-width {
    width: 173px;
}

ul.dropdown-menu.dropdown-checkbox.map-dropmenu.show {
    width: 97%;
}

.emp-header-res-btn {
    width: 150px;
}

.dept-header-res-btn {
    width: 150px;
}

.trg-status-header-btn {
    width: 150px;
}

.trg-perfm-trg-header-res-btn {
    width: 150px;
}

.trg-perfm-dept-header-res-btn {
    width: 150px;
}

.trg-perfm-trg-status-header-res-btn {
    width: 150px;
}
/* Media Query Start */
@media screen and (min-width: 768px) and (max-width: 1024px) {
    /* Your CSS rules for tablets here */
    .location-dropdown {
        width: 150px;
    }

    .formbtn-group {
        width: 100px;
    }

        .formbtn-group a {
            font-size: 11px;
            display: flex;
            align-items: center;
        }

    .dropdown-menu.dropdown-checkbox {
        width: auto;
    }

    .search-container input[type="text"] {
        padding: 8px 6px 8px 33px;
    }

    .jobrole-department-dropdown {
        width: 140px;
    }

    .jobrole-location-dropdown {
        width: 135px;
    }

    .jobrole-area-dropdown {
        width: 130px;
    }

    .addform-btn a {
        font-size: 13px;
        display: flex;
        align-items: center;
    }

    .rightArrowbtn,
    .leftArrowbtn {
        rotate: 90deg;
    }

    .difflevel-dropdow-btn {
        width: 170px;
    }

    .flowers-overlay {
        max-width: 120px;
    }

    .image-wrapper {
        max-width: 340px;
    }

    .dropdown-menu.dropdown-checkbox.jobrole-dropmenu {
        width: 158px;
    }

    ul.dropdown-menu.dropdown-checkbox.map-dropmenu.show {
        width: 95%;
    }

    .dropdown-menu.dropdown-checkbox.department-dropdown-responsive {
        width: 155px !important;
    }

    .dropdown-menu.dropdown-checkbox.emp-perf-emp-dropdown-responsive {
        width: 155px !important;
    }

    .dropdown-menu.dropdown-checkbox.trg-perfm-dept-responsive-dropdown-menu {
        width: 155px !important;
    }

    .dropdown-menu.dropdown-checkbox.trg-perfm-trg-responsive-dropdown-menu {
        width: 155px !important;
    }

    .dropdown-menu.dropdown-checkbox.emp-perf-dept-dropdown-responsive {
        width: 155px !important;
    }

    .dropdown-menu.dropdown-checkbox.emp-perf-trg-status-dropdown-responsive {
        width: 155px !important;
    }

    .dropdown-menu.dropdown-checkbox.quest-bank-trg-responsive-dropdownmenu {
        width: 160px !important;
    }

    .dropdown-menu.dropdown-checkbox.quest-bank-topic-responsive-dropdownmenu {
        width: 160px !important;
    }

    .dept-emp-btn-responsive {
        width: 175px;
    }

    .trg-emp-btn-responsive {
        width: 175px;
    }

    .emp-perf-report-exp-btn, .trg-perf-report-exp-btn {
        width: 102px;
    }
}
/* Media Query End */
/* Target screen resolution 1920x1080 */
@media (min-width: 1920px) and (min-height: 1080px) {
    .flower-dish {
        margin-left: 45px;
    }

    .image-wrapper {
        max-width: 600px;
    }
}
