/* Responsive iframe container */
.responsive-iframe-container {
    position: relative;
    width: 100%;
    max-width: 1000px; /* Adjust as needed */
    height: 1180px; /* Match the height seen in your screenshot */
    max-height: 1180px; /* Prevent excessive height */
    overflow: hidden;
}

/* Responsive iframe */
.responsive-iframe-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1180px; /* Ensure full page is shown */
    max-height: 1180px;
    pointer-events: none;
}
