<!DOCTYPE html>
<html lang="it">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
    <title>ValutaVendi</title>
    <style>
        /* Rimuove margini e scrollbar della pagina principale */
        body, html { 
            margin: 0; 
            padding: 0; 
            height: 100%; 
            width: 100%;
            overflow: hidden; /* Blocca lo scroll della pagina esterna */
        }

        /* Forza l'iframe a occupare tutto lo spazio disponibile */
        iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
        }
    </style>
</head>
<body>

    <iframe 
        src="https://casa-smart-lab.lovable.app/" 
        allowfullscreen>
    </iframe>

</body>
</html>