/* PDF Modal Styles */
.pdf-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1001;
    justify-content: center;
    align-items: center;
}

.pdf-modal-content {
    position: relative;
    width: 90%;
    height: 90vh;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
}

.pdf-modal-content iframe {
    width: 100%;
    height: calc(100% - 40px);
    border: none;
}

.pdf-modal .close-modal {
    position: absolute;
    top: 10px;
    right: 10px;
    color: #000;
    font-size: 24px;
    cursor: pointer;
    z-index: 1002;
    width: 30px;
    height: 30px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pdf-modal .close-modal:hover {
    background: #f0f0f0;
}

.document-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1rem;
}

.document-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: linear-gradient(45deg, #9b6dff, #ff69b4);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.document-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(155, 109, 255, 0.3);
}

