/* lightbox.css — Minimal lightbox overlay */

.mdm-lightbox {
	position: fixed;
	inset: 0;
	z-index: 100000;
	background: rgba(0, 0, 0, 0.95);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.3s;
}

.mdm-lightbox.is-visible {
	opacity: 1;
}

.mdm-lightbox img {
	max-width: 95vw;
	max-height: 90vh;
	object-fit: contain;
}

.mdm-lightbox-close {
	position: absolute;
	top: 16px;
	right: 20px;
	font-size: 36px;
	color: #fff;
	background: none;
	border: none;
	cursor: pointer;
	line-height: 1;
}

.mdm-lightbox-prev,
.mdm-lightbox-next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	font-size: 40px;
	color: #fff;
	background: none;
	border: none;
	cursor: pointer;
	padding: 12px;
}

.mdm-lightbox-prev { left: 12px; }
.mdm-lightbox-next { right: 12px; }
