.clsMVLightbox-container {
	display: none;
	position: fixed;
	top: 0; left: 0; right: 0; bottom: 0;
	background: rgba(0, 0, 0, 0.5);
	justify-content: center;
	align-items: center;
	z-index: 9999;
}

.clsMVLightbox-container.clsMVLightbox-active {
	display: flex;
}

.clsMVLightbox-content {
	position: relative;
	max-width: 90%;
	max-height: 90%;
	text-align: center;
	color: white;
}

.clsMVLightbox-photo-full {
	max-width: 100%;
	max-height: 80vh;
	border-radius: 8px;
}

.clsMVLightbox-caption {
	margin-top: 10px;
	font-size: 1rem;
}

.clsMVLightbox-close {
	position: absolute;
	top: -50px;
	right: -50px;
	font-size: 2.5rem;
	color: white;
	cursor: pointer;
	padding: 5px 10px;
}

.clsMVLightbox-close:hover {
	color: #CCCCCC;
}

.clsMVLightbox-nav {
	position: absolute;
	top: 50%;
	font-size: 2.5rem;
	color: white;
	cursor: pointer;
	padding: 0 10px;
	user-select: none;
	transform: translateY(-50%);
}

.clsMVLightbox-prev { left: -50px; }
.clsMVLightbox-next { right: -50px; }

.clsMVLightbox-prev:hover,
.clsMVLightbox-next:hover {
	color: #CCCCCC;
}

.clsMVLightbox-grid img {
	width: 240px;
	height: auto;
	margin: 5px;
	cursor: pointer;
	border-radius: 4px;
	transition: transform 0.2s;
}

.clsMVLightbox-grid img:hover {
	transform: scale(1.05);
}