  .pdf-viewer-toolbar {
    width: 100%;
    padding:4px 0px;    
    display: flex;
    flex-direction: row;
    flex-flow:row;
    flex-wrap: nowrap;
    white-space: nowrap;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #b8b8b8;
    overflow-y: hidden;
    min-height: 35px;
    max-height: 40px;

    .pdf-viewer-toolbar-pages {
      display: flex;
      flex-direction: row;
      flex-wrap: nowrap;
      align-items: center;
      justify-content: center;
    }
    span {
      white-space: nowrap;
    }
  }

  .react-pdf__Document {
  position: relative;
  width: 100%;
  height: 100%;
  flex: 1;

  .pdf-pages-container{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    // border: 1px dashed blue;
    gap: 5px;
    

    .react-pdf__Page {
      display: inline-block;
      .react-pdf__Page__canvas {
        display: inline-block;
        border: 1px solid rgb(172, 169, 169);
        border-radius: 5px;
      }
    }
  }
}

.pdf-viewer-modal-paper {
  max-height: calc(100% - 8px);
}