.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    }

.modal-overlay.active {
    display: flex; /* Show the modal when "active" class is present */
}

.modal-content {
    position: relative;
    background-color: #f9f9f9;
    border: 1px solid #ccc;
    border-radius: 15px;
    padding: 15px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    max-width: 600px;
    width: 90%;
    text-align: center;
    margin: 0;
}

.spinner {
    margin: 1rem 0;
    font-size: 3rem;
    color: #2a9d8f;
}

.close-button {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    border: none;
    background: transparent;
    font-size: 2rem;
    color: #f1515e;
    cursor: pointer;
}