/* Contenedor principal */
.flipbook-container {
    margin: 20px auto;
    position: relative;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    overflow: hidden;
    background: #f9f9f9;
}

/* Visor del flipbook */
#flipbook-viewer {
    width: 100%;
    height: 100%;
    background: white;
}

/* Páginas del flipbook */
#flipbook-viewer .page {
    background: white;
    color: #333;
    padding: 20px;
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.1);
}

/* Botón de descarga */
.download-pdf {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 15px;
    background: #4CAF50;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
    transition: background 0.3s;
}

.download-pdf:hover {
    background: #45a049;
}

/* Estilos para móviles */
@media (max-width: 768px) {
    .flipbook-container {
        width: 95% !important;
        height: 400px !important;
    }
    
    #flipbook-viewer .page {
        padding: 10px;
    }
}

/* Efectos de hover para las páginas (opcional) */
#flipbook-viewer .page:hover {
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.2);
}