  .pdf-container {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;  
  align-items: center;     
}

iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

@media (max-width: 500px) {
  header {
    flex-direction: column; /* header vertical sur petit écran */
    gap: 10px;
    text-align: center;
  }

  .pdf-container {
    height: calc(100vh - 60px); /* laisse de la place pour le header */
  }
}