.button-container {
    display: flex; /* Use flexbox */
    justify-content: space-between; /* Space buttons evenly */
    align-items: center; /* Align buttons vertically in the middle */
}

.button-left,
.button-right {
    flex: 1; /* Distribute available space evenly between the buttons */
    margin: 0 5px; /* Optional margin between buttons */
}


 /* Style the modal */
 .modal {
    display: none;
    position: fixed;
    top: 50%;
    left: 45%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 2;
    /* Ensure it's above the form */
    overflow: auto;
    display: flex;
    justify-content: center;
    /* Center horizontally */
    align-items: center;
    /* Center vertically */
}


/* Style the modal content */
.modal-content {
    background-color: #fff;
    border-radius: 5px;
    width: 250px;
    /* Set a fixed width */
    height: 150px;
    /* Set a fixed height */
    margin: auto;
    /* Center horizontally */
    padding: 20px;
    /* Adjust padding as needed */
    text-align: center;
    position: relative;
    /* Add this to allow close button positioning */
    justify-content: center;
    /* Center horizontally */
    align-items: center;
    /* Center vertically */
}

.modal-content p {
    font-size: 20px;
}

/* Style the close button */
.close {
    position: absolute;
    top: 10px;
    right: 10px;
    color: #aaa;
    font-size: 30px;
    cursor: pointer;
    z-index: 1;
    /* Ensure it's above the modal content */
}

.close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

/* Style the checkmark */
.checkmark {
    font-size: 64px;
    color: #4CAF50;
    margin-bottom: 20px;
}

/* Style the loading box */
#loading-box {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    /* Ensure it's above the form */
}

#loading-text {
    font-size: 20px;
    color: #fff;
}

/* Style the loading indicator container */
#loading {
    background-color: #3fd721;
    padding: 20px;
    border-radius: 5px;
    text-align: center;
}

