/* Fix per pagine con iframe full-screen */
body.iframe-page {
    overflow-y: auto !important;
    height: auto !important;
    min-height: 100vh;
}

/* Wrapper per contenuto con iframe */
.iframe-container {
    position: relative;
    height: calc(100vh - 102px - 100px); /* header height - footer height */
    width: 100%;
    margin-bottom: 0;
}

.iframe-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Assicura che il footer sia sempre visibile */
.footer {
    position: relative !important;
    margin-top: auto;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    z-index: 1000;
}

/* Media query per mobile */
@media (max-width: 768px) {
    .iframe-container {
        height: calc(100vh - 80px - 120px); /* header ridotto - footer mobile */
    }
}

/* Classe utility per pagine iframe */
.has-footer-space {
    padding-bottom: 100px; /* Spazio per il footer */
}