/* WP Toolbox — Lightbox-module. Kleuren (backdrop/caption/controls) komen via
   inline CSS-variabelen + een ::backdrop-regel die de module server-side genereert. */

a.wptb-lb-link,
img.wptb-lb-bind { cursor: zoom-in; }

dialog.wptb-lb {
	position: fixed;
	inset: 0;
	width: 100%;
	height: 100%;
	max-width: 100%;
	max-height: 100%;
	margin: 0;
	padding: 0;
	border: 0;
	background: transparent;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}
dialog.wptb-lb:not([open]) { display: none; }

dialog.wptb-lb .wptb-lb-figure {
	margin: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	max-width: 92vw;
	max-height: 92vh;
}

dialog.wptb-lb .wptb-lb-img {
	max-width: 92vw;
	max-height: 84vh;
	width: auto;
	height: auto;
	object-fit: contain;
	box-shadow: 0 4px 30px rgba(0, 0, 0, .5);
	border-radius: 2px;
	background: rgba(0, 0, 0, .15);
}

dialog.wptb-lb .wptb-lb-cap {
	color: var(--wptb-lb-cap, #fff);
	text-align: center;
	max-width: 92vw;
	margin-top: .8em;
	font-size: .95rem;
	line-height: 1.45;
}
dialog.wptb-lb .wptb-lb-cap > span { display: block; }
dialog.wptb-lb .wptb-lb-cap .wptb-lb-title { font-weight: 600; }
dialog.wptb-lb .wptb-lb-cap .wptb-lb-desc { font-size: .88em; opacity: .85; margin-top: .25em; }

dialog.wptb-lb button {
	position: absolute;
	background: transparent;
	border: 0;
	color: var(--wptb-lb-ctrl, #fff);
	cursor: pointer;
	line-height: 1;
	padding: 0;
	font-family: inherit;
	-webkit-tap-highlight-color: transparent;
}
dialog.wptb-lb button:hover { opacity: .7; }

dialog.wptb-lb .wptb-lb-close { top: 14px; right: 18px; font-size: 38px; }
dialog.wptb-lb .wptb-lb-prev,
dialog.wptb-lb .wptb-lb-next {
	top: 50%;
	transform: translateY(-50%);
	font-size: 52px;
	padding: 0 14px;
	-webkit-user-select: none;
	user-select: none;
}
dialog.wptb-lb .wptb-lb-prev { left: 6px; }
dialog.wptb-lb .wptb-lb-next { right: 6px; }

dialog.wptb-lb.is-single .wptb-lb-prev,
dialog.wptb-lb.is-single .wptb-lb-next { display: none; }

@media (max-width: 600px) {
	dialog.wptb-lb .wptb-lb-prev,
	dialog.wptb-lb .wptb-lb-next { font-size: 40px; padding: 0 8px; }
	dialog.wptb-lb .wptb-lb-close { font-size: 32px; top: 10px; right: 12px; }
}
