body, html {
    margin: 0;
    padding: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

iframe {
    width: 100vw;
    height: 100vh;
    border: none;
    display: block; /* Verhindert unerwünschte Abstände */
    overflow: hidden;
}

/* Container für den Installationsbutton */
#install-container {
    position: fixed; /* Fixiert den Button über dem Iframe */
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10000; /* Sehr hoher Wert, damit er über dem Iframe liegt */
    text-align: center;
}

/* Installationsbutton zunächst ausblenden */
#install-button {
    display: none;
    padding: 12px 20px;
    background: #ff9800;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
    transition: background 0.3s;
}

#install-button:hover {
    background: #e68900;
}


/* Iframe bleibt klickbar */
#iframe-container {
    position: absolute;
    top: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1; /* Unterhalb des Buttons */
}

#iframe-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    z-index: 0;
    pointer-events: auto; /* WICHTIG: Damit das Iframe wieder klickbar ist */
}