@keyframes fadeInModal {
    from { opacity: 0; transform: scale(0.95); }
    to   { opacity: 1; transform: scale(1); }
}

.modal {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.modal.show {
    display: flex;
}

.modal-inner {
    background: #000;
    /*padding: 2rem; removed this black background of the modal per client feedback */
    padding: 0px;
    /*border-radius: 10px;*/
    max-width: 800px;
    width: 90%;
    animation: fadeInModal 0.3s ease-out;
    position: relative;
}

.close {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 2rem;
    color: #fff;
    cursor: pointer;
}