.jsf-perishable-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
}

.jsf-perishable-modal-content {
    background-color: #fff;
    margin: 20% auto;
    padding: 20px;
    max-width: 600px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 10000; /* Increase the z-index of the modal content */
}

.jsf-perishable-modal-close {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    z-index: 10001; /* Ensure close button appears above the modal content */
}

.jsf-perishable-modal-acknowledge-button {
    margin-top: 10px;
}
.jsf-perishable-modal-close {
    display: inline-block;
    width: 100%;
    white-space: normal;
    text-align: center;
    cursor: pointer;
}
