/* Desktop default */
.lazy-pdf-container {
    max-width: 100%;
    margin: 0 auto;
}

.lazy-pdf-page {
    margin-bottom: 40px;
    position: relative;
}

/* PORTRAIT mobile/tablet only */
@media (max-width: 1024px) and (orientation: portrait) {
    .lazy-pdf-page {
        width: 100vw;
        max-width: 100vw;
        overflow-x: auto;   /* allow horizontal pan */
        overflow-y: hidden;
        margin: 0 0 40px 0;
    }

    .lazy-pdf-page canvas {
        height: 100vh !important;
        width: auto !important;   /* allow content wider than screen */
        max-height: 100vh;
    }
}

/* LANDSCAPE mobile/tablet: behave like desktop (fit width) */
@media (max-width: 1024px) and (orientation: landscape) {
    .lazy-pdf-page {
        width: 100%;
        overflow-x: hidden;      /* no side scroll */
    }

    .lazy-pdf-page canvas {
        width: 100% !important;
        height: auto !important;
        max-width: 100%;
    }
}
