/* Overlay Styling */

    /* Modal styles */
#pdfModal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}
#pdfViewer {
    background: white;
    /*width: 50%;*/
    height: 80%;
    overflow: auto;
    padding: 10px;
}
#closeModal {
    position: absolute;
    top: 100px;
    right: 10px;
    background: red;
    color: white;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
}
#downloadFile {
    position: absolute;
    top: 150px;
    right: 10px;
    background: blue;
    color: white;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
}