body {
    margin: 0;
    background-color: #525659;
    font-family: Segoe UI, Tahoma, sans-serif;
  }
  
  .PDF-Profile input,
  .PDF-Profile button {
    font: inherit;
  }
  
  .PDF-Profile header {
    background-color: #323639;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.5);
    padding: 20px;
    color: white;
  }
  
  .PDF-Profile header h1 {
    font-size: inherit;
    margin: 0;
  }
  
  .PDF-Profile__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 10px 0;
    padding: 10px;
  }
  
  .PDF-Profile__container__load {
    margin-top: 1em;
    color: white;
  }
  
  .PDF-Profile__container__document {
    margin: 1em 0;
  }
  
  .PDF-Profile__container__document .react-pdf__Document {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .PDF-Profile__container__document .react-pdf__Page {
    max-width: calc(100% - 2em);
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.5);
    margin: 1em;
  }
  
  .PDF-Profile__container__document .react-pdf__Page canvas {
    max-width: 100%;
    height: auto !important;
  }
  
  .PDF-Profile__container__document .react-pdf__message {
    padding: 20px;
    color: white;
  }