/* Taller PDF viewer inside modal */
.pdf-modal .modal {
    max-width: 90vw;
    /* use more horizontal space if needed */
    max-height: 90vh;
    /* increase modal height */
}

.pdf-modal .pdf-body {
    flex: 1 1 auto;
    height: 85vh;
    /* was 70vh before, increase to fill more of the viewport */
    display: flex;
    align-items: stretch;
    justify-content: stretch;
}

.pdf-modal .pdf-frame {
    border: none;
    width: 100%;
    height: 100%;
}