@charset "UTF-8";
/* CSS Document */

/* On enlève toutes les marges par défaut */
html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow: hidden; /* pas de scroll */
  background-color: #0044ff; /* fond bleu derrière le PDF */
}

/* Le PDF prend toute la fenêtre */
.pdf-plein-ecran {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;   /* pleine largeur */
  height: 100vh;  /* pleine hauteur */
  border: none;   /* sans bordure */
}
