.modal-class {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Dim background */
    z-index: 99999; /* Ensure it's above other content */
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-class .modal-content {
    background: white;
    padding: 20px;
    border-radius: 5px;
    /* Add more styling as needed */
}

.modal-class #donate {
    display: block;
    width: 100%;
    min-height: 250px;
    margin-left: auto;
    max-width: 90%;
}

.admin-bar .modal-class #donate {
    top: 32px;
}