.ajaxLoaderModal {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none; /* Disable pointer events on the modal overlay */
}

.ajaxLoaderModal.show {
    opacity: 1;
    pointer-events: auto;
}

.loader-modal-dialog {
    position: relative;
    width: 50%;
    max-width: 400px;
    background-color: #fff;
    border-radius: 5px;
    padding: 20px;
}

.ajax-loader-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

#ajax-loading-image {
    width: 100px;
}
