/* Entfernt Standardabstände und sorgt für volle Bildschirmnutzung */
html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    background-color: #1a1a1a;
}

/* Container für das PDF */
#pdf-container {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Das PDF-Frame passt sich automatisch an */
#pdf-frame {
    width: 100%;
    height: 100%;
    border: none;
}