/* 🔥 OVERLAY */
.pdf-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);

    display: none;
    z-index: 999999;
}

.pdf-overlay.active {
    display: block;
}


/* 🔥 MODAL KUTU */
.pdf-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    width: 100%;
    max-width: 520px;

    background: #fff;
    box-shadow: 0 10px 40px rgba(0, 0, 0, .3);

    padding: 20px;
    z-index: 1000000;
    /* overlay’den de yukarı */
}



/* HEADER */
.pdf-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pdf-modal-header button {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
}

/* BODY */
.pdf-modal-body input {
    width: 100%;
    padding: 10px;
    margin-top: 10px;
    border: 1px solid #ccc;
}

/* FOOTER */
.pdf-modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 20px;
}