collapsible Tree
html, body { margin: 0; padding: 0; height: 100%; overflow: hidden; /* Empêche le défilement */ }
.iframe-container { width: 100%; height: 100%; position: fixed; /* Fixe le conteneur par rapport à la fenêtre */ top: 0; left: 0; overflow: hidden; /* Masque tout débordement */ z-index: 9999; /* Assure que le conteneur de l'iframe est au-dessus des autres éléments */ }
.responsive-iframe { width: 100%; height: 100%; border: none; box-sizing: border-box; position: absolute; /* Position absolue à l'intérieur du conteneur */ }
html, body { margin: 0; padding: 0; height: 100%; overflow: hidden; /* Prevent page scrolling */ }
.responsive-iframe { width: 100%; height: calc(100vh - 40px); /* Adjust this value if necessary */ border: none; box-sizing: border-box; display: block; }
footer { position: relative; /* Ensure footer stays at the bottom */ height: 40px; /* Adjust this height if necessary */ z-index: 1; /* Ensure the footer does not overlay the iframe */ }
