/* PDF Modal styles */
.pdf-modal {
    display: none;
    /* Hidden by default */
    position: fixed;
    z-index: 1000;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    /* Semi-transparent background */
    backdrop-filter: blur(10px);
}

.pdf-modal-content {
    position: relative;
    margin: auto;
    width: 90%;
    max-width: 900px;
    height: 95%;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.pdf-close {
    position: absolute;
    top: -15px;
    right: 0px;
    font-size: 30px;
    font-weight: bold;
    color: #0996ce;
    cursor: pointer;
    background-color: white;
    border-radius: 50px;
}

.pdf-close:hover {
    color: #d40909;
}

.pdf-viewer {
    flex-grow: 1;
    /* Make the PDF viewer take up remaining space */
    width: 100%;
    height: 100%;
    /* Adjust to fit the modal */
    border: none;
    overflow: hidden;
}