.panel-body {
    background-color: #FFFFFF;
}

#MainDoorListModel .modal-content {
   
}

    #MainDoorListModel .modal-content .modal-header {
    }

        #MainDoorListModel .modal-content .modal-header h3 {
            margin: 0;
        }

        #MainDoorListModel .modal-content .modal-header h5 {
            margin-left: 10px;
            margin-top: 5px;
        }

        #MainDoorListModel .modal-content .modal-header button {
            border: none !important;
            outline: none !important;
            background: linear-gradient(95.25deg,#72CAC8 0%,#70C059 99.46%) !important;
            border-radius: 10px;
            color: #000 !important;
            margin: 0 0 0 auto !important;
            font-size: 2rem !important;
            padding: 0px 10px 5px 10px !important;
            font-weight: 700 !important;
        }

#MainDoorListModel .panel-body .btn-outline-primary {
    font-weight: 500;
}

#MainDoorListModel .panel-body .doorList-table-row-td {
    display: grid;
    justify-content: center;
    border: none;
    position: relative;
    top: 4px;
}

.table-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 15px;
}

/*.table-responsive {
    padding: 0 15px;
}*/

.table-title h2 {
    font-weight: 700;
    font-size: 20px;
}

.panel-body .btn-outline-primary {
    font-weight: 500;
    border-color: #578833;
    color: #578833;
}

    .panel-body .btn-outline-primary:hover,
    .panel-body .btn-outline-primary:active {
        background-color: #70c059 !important;
        border-color: #70c059 !important;
        color: #fff !important;
    }

    .panel-body .btn-outline-primary:focus {
        box-shadow: 0 0 0 0.2rem #70c059;
    }

.panel-body .table-responsive .table-bordered {
    border: 1px #ced4da solid;
    border-radius: 10px;
}

.panel-body .table-responsive .form-control {
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    
}

    .panel-body .table-responsive .form-control:focus {
        border-color: #70c059;
        box-shadow: 0 0 0 0.2rem #bae2b0;
    }

.panel-body .table-responsive tr .close-btn {
    border: none;
    display: grid;
    justify-items: center;
}

.panel-body .table-responsive tr:hover {
    background-color: #fff;
}


#FacilityList {
    width: 100% !important;
    padding: 10px;
}

    #FacilityList tbody tr .sorting_1,
    #FacilityList tbody tr .text-left {
        padding-top: 16px !important;
    }

#DoorBookHistoryList {
    width: 100% !important;
}

#FacilityList_wrapper #FacilityList tbody tr td .btn-primary,
#DoorBookHistoryList_wrapper #DoorBookHistoryList tr td .btn-primary,
#MenuList_wrapper #MenuList tr td .btn-primary,
#RoleList_wrapper #RoleList tr td .btn-primary,
#UserList_wrapper #UserList tr td .btn-primary {
    --bs-btn-color: #fff;
    --bs-btn-bg: #76ae0a;
    --bs-btn-border-color: #76ae0a;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #304607;
    --bs-btn-hover-border-color: #304607;
    --bs-btn-focus-shadow-rgb: 49, 132, 253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #304607;
    --bs-btn-active-border-color: #304607;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #304607;
    --bs-btn-disabled-border-color: #304607;
}

    #FacilityList_wrapper #FacilityList tbody tr td .btn-primary:active {
        background-color: #304607 !important;
    }

    #FacilityList_wrapper #FacilityList tbody tr td .btn-primary:focus {
        box-shadow: none;
    }

.gradient-custom .card-registration {
    background-color: #fff;
}

    .gradient-custom .card-registration::before {
        display: none;
    }

    .gradient-custom .card-registration::after {
        background-color: #11c15b;
    }

#AddFacilityForm .form-outline-btns {
    display: flex;
    gap: 10px;
    margin-top: 10px;
    margin-bottom: 10px;
}






#dtBasicExample_wrapper, {
    background-color: #98ddd570;
}


#MenuList_wrapper #MenuList tr,
#RoleList_wrapper #RoleList tr,
#UserList_wrapper #UserList tr,
#DoorBookHistoryList_wrapper #DoorBookHistoryList tr {
}
.modal {
    overflow: auto !important;
}

.modal-open {
    overflow: auto !important;
}

    .modal-open .modal {
        overflow-x: auto !important;
    }

.btn:disabled {
    color: #020202;
    pointer-events: none !important background-color: var(--bs-btn-disabled-bg);
    border-color: var(--bs-btn-disabled-border-color);
    opacity: var(--bs-btn-disabled-opacity);
}

.font-weight-bold {
    font-weight: bold;
}

.modal-dialog-centered {
    display: flex;
    align-items: center;
    min-height: auto !important;
}
/* CSS for modal overlay effect */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent black */
    backdrop-filter: blur(5px); /* Apply blur effect to the background */
    z-index: 1000; /* Ensure the overlay is above everything else */
    display: none; /* Initially hidden */
}

.modal-open .modal-overlay {
    display: block; /* Show the overlay when modal is open */
}