/*
Theme Name: HivePress Child - Blank Page
Description: Blank-canvas child theme for HivePress.
Author:      Fresco Software
Template:    meetinghive
Version:     1.3.5
*/

/* Hide .hp-modal only on the blank page template */
body.page-template-page-blank .hp-modal,
body.page-template-page-blank-php .hp-modal {
	display: none !important;
}

/*
 * Full-height chain for TrainerFly app (blank template).
 * Height is driven by JS (visual viewport) when keyboard opens; CSS sets initial state.
 */
html:has(body.app-blank),
body.app-blank {
	height: 100%;
	min-height: 100dvh;
	margin: 0;
}

/* Anchored to top so when height shrinks (keyboard), only the bottom moves up; header stays fixed */
body.app-blank .trainerfly-app-wrapper {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	height: 100dvh;
	min-height: 100dvh;
	width: 100%;
	overflow: hidden;
}

/* Mount point needs height so the Vue app (h-full) can fill and the map renders */
body.app-blank .trainerfly-app-wrapper #trainerfly {
	height: 100%;
	min-height: 0;
	display: flex;
	flex-direction: column;
}