/* PDF Viewer Inline Styles */
.pdfFileItem {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    padding: 4px 0;
}

.pdfFileIcon {
    font-size: 16px;
}

.pdfDownloadLink {
    color: #1a5276;
    text-decoration: none;
    font-weight: bold;
}

.pdfDownloadLink:hover {
    text-decoration: underline;
    color: #154360;
}

.pdfToggleBtn {
    display: inline-block;
    background: #e8f4fd;
    color: #1a5276;
    border: 1px solid #aed6f1;
    border-radius: 3px;
    padding: 2px 8px;
    font-size: 12px;
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap;
}

.pdfToggleBtn:hover {
    background: #aed6f1;
    color: #154360;
}

.pdfToggleBtn.active {
    background: #1a5276;
    color: #fff;
    border-color: #154360;
}

.pdfInlineViewer {
    margin-top: 6px;
    width: 100%;
    border: 1px solid #aed6f1;
    border-radius: 4px;
    overflow: hidden;
    background: #f0f0f0;
}

.pdfViewerFrame {
    width: 100%;
    height: 600px;
    border: none;
    display: block;
}
