@media only screen and (max-width: 600px) {
    #idIframe {
       height:1200px;
    }
}
#idIframe {
    height: 1400px;
}
#privacyModal {
    position: fixed;
    bottom: 100px;
    left: 0;
    right: 0;
    width: 25%;
    height: 250px;
    background: rgba(0,0,0,0.6);
    display: none; /* Hidden by default */
    justify-content: center;
    align-items: center;
    z-index: 9999;
    min-width: 350px;
}

button {
    margin-top: 10px;
    padding: 8px 16px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}
@media only screen and (min-width: 270px) and (max-width: 575px) {
    #privacyModal {
        position: fixed;
        bottom: 100px;
        left: 0;
        right: 0;
        width: 100%;
        height: 280px;
        background: rgba(0,0,0,0.6);
        display: none; /* Hidden by default */
        justify-content: center;
        align-items: center;
        z-index: 9999;
    }
    button {
        margin-top: 5px;
        padding: 8px 16px;
        border: none;
        border-radius: 6px;
        cursor: pointer;
    }
}

.modal-content {
    background: white;
    padding: 10px;
    border-radius: 8px;
    text-align: left;
}

    .modal-content h2 {
        margin-top: 0;
    }

.ok-btn {
    background-color: #28a745;
    color: white;
}

.cancel-btn {
    background-color: #dc3545;
    color: white;
}