iframe {
        min-height: 500px;
        overflow-y:hidden;      
}
        html, body {
            height: 100%;
            margin: 0;
            padding: 0;
        }

        /* Container to center and handle the responsive iframe */
        .container {
            display: flex;
            justify-content: center;
            align-items: center;
            height: 88vh; /* Full viewport height */
            width: 100vw;  /* Full viewport width */
            margin: 0;
            padding: 0;
        }

        /* Inner page styling */
        .page-inner {
            position: relative;
            width: 100%;
            height: 100%;
        }

        /* Make iframe responsive */
        .page-inner iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 105%;
            height: 100%;
            border: none;
        }