/* ── Popup overlay ──────────────────────────────────────────────────────── */

.wooforge-popup {
	position: fixed;
	inset: 0;
	/* Above EVERYTHING, including stuck sticky header rows, which climb to
	   z-index 10001 in the no-overlap-sidebar mode (see
	   WooForge_Layout::get_overlap_sidebar_css) — a modal always wins. */
	z-index: 10100;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 16px;
	box-sizing: border-box;
}

.wooforge-popup[hidden] {
	display: none;
}

/* ── Backdrop ────────────────────────────────────────────────────────────── */

.wooforge-popup-backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.5);
	cursor: pointer;
}

/* ── Dialog box ──────────────────────────────────────────────────────────── */

.wooforge-popup-dialog {
	position: relative;
	background: #fff;
	border-radius: var(--wooforge-radius-popup, 4px);
	padding: 32px;
	width: 100%;
	max-height: 90vh;
	overflow-y: auto;
	box-sizing: border-box;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

/* ── Close button ────────────────────────────────────────────────────────── */

.wooforge-popup-close {
	position: absolute;
	top: 12px;
	right: 12px;
	width: 32px;
	height: 32px;
	border: none;
	background: transparent;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	color: currentColor;
	opacity: 0.5;
	line-height: 1;
	border-radius: var(--wooforge-radius-popup, 4px);
}

.wooforge-popup-close:hover {
	opacity: 1;
}

/* ── Opener ──────────────────────────────────────────────────────────────── */

button.wooforge-popup-opener {
	cursor: pointer;
}
