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 .form_holder .select2-container {
    width: 199px !important;
    padding: 20px 10px;
}

.Crud_section .filter_section .form_holder .select2-container .select2-selection--single {
    height: 36px !important;
}

.Crud_section .filter_section .form_holder .select2-container .select2-container--default .select2-selection--single {
    height: 35px !important;
}

.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: #7c8388;
}

.status-dot.scheduled{
    background: #056EAF;
}

.status-dot.rejected{
    background: #c60d0d;
}

.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;
    /* overflow:hidden; */
    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;
}
.card-footer {
  padding: var(--bs-card-cap-padding-y) var(--bs-card-cap-padding-x);
  color: var(--bs-card-cap-color);
  background-color: var(--bs-card-cap-bg);
  border-top: var(--bs-card-border-width) solid var(--bs-card-border-color);
}
.preview_img_holder .view_icon_btn .eye_icon {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
}
.status-badge {
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    display: inline-block;
}

.status-badge.badge-incomplete {
    background: #6c757d !important;
    color: #fff !important;
}

.status-badge.badge-requested {
    background: #ffc107 !important;
    color: #212529 !important;
}

.status-badge.badge-approved {
    background: #198754 !important;
    color: #fff !important;
}

.status-badge.badge-rejected {
    background: #dc3545 !important;
    color: #fff !important;
}

@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;
    }
}


.notif-pagination-wrapper {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 15px;
}

.np-btn {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    border: 1px solid #e0e0e0;
    background: #fff;
    color: #333;
    font-size: 14px;
    text-decoration: none;

    transition: 0.2s;
}

.np-btn:hover {
    background: #f2f6ff;
    border-color: #0d6efd;
    color: #0d6efd;
}

.np-btn.active {
    background: #0d6efd;
    color: #fff;
    border-color: #0d6efd;
    font-weight: 600;
}

.np-btn.disabled {
    opacity: 0.4;
    pointer-events: none;
}

   .reason_box{
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 10px;
    padding: 15px;
    min-height: 120px;
    font-size: 15px;
    line-height: 1.7;
    white-space: pre-line;
    color: #333;

   }

   .Bucket_box h2{
    font-size: 32px;
    margin-bottom: 10px;
}

.Bucket_box h5{
    font-size: 16px;
}
