.pdf-control-btn {
    transition: .2s ease;
    background: rgba(255, 255, 255, .1);
    backdrop-filter: blur(10px);
}

.pdf-control-btn:hover {
    background: rgba(255, 255, 255, .2);
    transform: translateY(-1px);
}

.fullscreen-mode {
    position: fixed;
    inset: 0;
    z-index: 60;
    background: #fff;
    padding: 1rem;
}

/* Tamaño base (desktop) */
.pdf-iframe {
    width: 100%;
    height: 600px;
}

/* Pantallas pequeñas: alto tipo app y sin escalado */
@media (max-width: 768px) {
    .pdf-iframe {
        width: 100%;
        height: 80vh;
        /* ocupa 80% del alto de pantalla */
    }

    /* Oculta botones de zoom en móvil, deja “Abrir en pestaña” y “Pantalla completa” si quieres */
    .pdf-controls [data-hide-on-mobile] {
        display: none;
    }
}