/* PDF Modal Styles */
.pdf-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.pdf-modal-content {
    width: 90%;
    max-width: 1100px;
    height: 90vh;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.pdf-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid #ddd;
}

#closePdfModal {
    border: none;
    background: none;

    font-size: 28px;
    cursor: pointer;
}

#pdfViewer {
    flex: 1;
    border: none;
}
