ccc48f6e5a
The dynamic height adjustment was setting a fixed height on .cv-paper, but the footer is a sibling element OUTSIDE .cv-paper in the DOM. This caused the footer to be positioned incorrectly and hidden. Removed: - dataset.originalHeight storage - height calculation and setting - All dynamic height adjustment logic The CSS transform: scale() will handle the visual zoom without affecting the natural document flow, allowing the footer to appear properly after the content. Result: Footer should now be visible at all zoom levels