.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 50;
}

/* Styling for the modal content */
.modal-content {
    background-color: #ffffff;
    padding: 2.5px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    width: 90%;
    max-width: 1000px;
    position: relative;
}

/* Styling for the close button */
.close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    cursor: pointer;
}

/* Styling for the iframe */
iframe {
    width: 100%;
    height: 650px; /* Adjust the height as needed */
    border: none;
    border-radius: 10px;
}