body {
    font-family: "Roboto", sans-serif !important;
}

body a {
    text-decoration: none !important;
}

.Content_wrapper {
    padding: 5px;
    height: 80vh;
    overflow: hidden;
    overflow-y: auto;
    scrollbar-width: none;
}

/* ---------- FILTER css---------- */

.Crud_section .filter_section {
    display: flex;
    gap: 20px;
    margin-top: 2%;
    align-items: start;
    border-bottom: 1px solid #343a40;
    padding-bottom: 2%;
}

.Crud_section .filter_section .form_holder {
    display: flex;
    gap: 20px;
    align-items: start;
    width: 100%;
}

.Crud_section .filter_section .form_holder .form-select {
    width: fit-content;
}

.Crud_section .filter_section .heading_holder p {
    text-align: left;
    font-size: 15px;
    font-weight: 500;
    color: #191a15;
    text-transform: capitalize;
    margin-bottom: 0px;
    text-wrap-mode: nowrap;
}

/* ---------- ADD BUTTON ---------- */
.Crud_section .add-btn {
    text-align: left;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0px;
    color: #ffffff;
    text-transform: capitalize;
    opacity: 1;
    background: #191a15 0% 0% no-repeat padding-box;
    box-shadow: 0px 0px 6px #00000029;
    border-radius: 5px;
    padding: 5px 20px;
}

/* btn_css */
.btn_download {
    text-align: left;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0px;
    color: #000;
    text-transform: capitalize;
    opacity: 1;
    background: #fff 0% 0% no-repeat padding-box;
    border: 1px solid #000;
    border-radius: 5px;
    padding: 5px 20px;
}

.btn_download:hover {
    color: #fff;
    background: #000 0% 0% no-repeat padding-box;
}

/* STATUS DOT */

.status_text_holder {
    display: flex;
    align-items: center;
    gap: 10px;
}

.status-dot {
    height: 12px;
    width: 12px;
    display: inline-block;
    border-radius: 50%;
}
.status-dot.active {
    background: #249c00;
}
.status-dot.inactive {
    background: #ee0101;
}

.status-dot.leave {
    background: #ffe600;
}

/* TOGGLE SWITCH */
.switch {
    position: relative;
    width: 40px;
    height: 22px;
}

.switch input {
    display: none;
}

.switch .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #bdbdbd;
    border-radius: 34px;
    transition: 0.3s;
}

.switch .slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 4px;
    bottom: 3px;
    background-color: #fff;
    border-radius: 50%;
    transition: 0.3s;
}

.switch input:checked + .slider {
    background-color: #000;
}

.switch input:checked + .slider:before {
    transform: translateX(18px);
}

/*  Images preview */

.preview_img_holder {
    background: #fff;
    box-shadow: inset 0px 3px 6px #00000029;
    border: 1px solid #b1b1b1;
    border-radius: 7px;
    opacity: 1;
    width: 100%;
    height: 117px;
    position: relative;
}

.preview_img_holder .img_holder .aadhar_preview {
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

.preview_img_holder .img_holder {
    height: 100%;
}

.preview_img_holder .view_icon_btn {
    background: #000;
    border: 1px solid #000;
    border-radius: 50px;
    padding: 5px;
    width: 30px;
    height: 30px;
    position: absolute;
    right: 0px;
    top: 0px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}

.preview_img_holder .view_icon_btn .eye_icon {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
}

@media (min-width: 0px) and (max-width: 767px) {
    .Crud_section .filter_section .form_holder {
        overflow: hidden;
        overflow-x: auto;
    }

    .Crud_section .add-btn {
        font-size: 13px;
    }

    .btn_download {
        font-size: 13px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .Crud_section .add-btn {
        font-size: 13px;
    }

    .Crud_section .filter_section .form_holder {
        flex-wrap: wrap;
        gap: 10px;
    }

    .btn_download {
        font-size: 13px;
    }

    .preview_img_holder .view_icon_btn {
        width: 20px;
        height: 20px;
    }

    .preview_img_holder .view_icon_btn .eye_icon {
        font-size: 11px;
    }
}
