.galleryforge-lightbox-overlay {
	position: fixed;
	inset: 0;
	z-index: 999999;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 30px;
	background: rgba(0, 0, 0, 0.9);
}

.galleryforge-lightbox-overlay.is-open {
	display: flex;
}

.galleryforge-lightbox-content {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
}

.galleryforge-lightbox-image {
	display: block;
	max-width: 90vw;
	max-height: 90vh;
	width: auto;
	height: auto;
	object-fit: contain;
}

.galleryforge-lightbox-close,
.galleryforge-lightbox-prev,
.galleryforge-lightbox-next {
	position: absolute;
	z-index: 2;
	border: 0;
	color: #fff;
	background: rgba(0, 0, 0, 0.5);
	cursor: pointer;
}

.galleryforge-lightbox-close {
	top: 20px;
	right: 20px;
	width: 44px;
	height: 44px;
	font-size: 32px;
	line-height: 1;
	border-radius: 50%;
}

.galleryforge-lightbox-prev,
.galleryforge-lightbox-next {
	top: 50%;
	transform: translateY(-50%);
	width: 50px;
	height: 60px;
	font-size: 30px;
}

.galleryforge-lightbox-prev {
	left: 20px;
}

.galleryforge-lightbox-next {
	right: 20px;
}

.galleryforge-lightbox-close:hover,
.galleryforge-lightbox-prev:hover,
.galleryforge-lightbox-next:hover {
	background: rgba(0, 0, 0, 0.8);
}

.galleryforge-lightbox-open {
	overflow: hidden;
}
.galleryforge-lightbox-title {
	position: absolute;
	left: 50%;
	bottom: 20px;
	transform: translateX(-50%);
	max-width: 80%;
	padding: 8px 16px;
	color: #fff;
	background: rgba(0, 0, 0, 0.65);
	font-size: 16px;
	line-height: 1.5;
	text-align: center;
	border-radius: 4px;
}

@media (max-width: 767px) {

	.galleryforge-lightbox-overlay {
		padding: 15px;
	}

	.galleryforge-lightbox-image {
		max-width: 95vw;
		max-height: 80vh;
	}

	.galleryforge-lightbox-prev,
	.galleryforge-lightbox-next {
		width: 42px;
		height: 50px;
		font-size: 24px;
	}

	.galleryforge-lightbox-prev {
		left: 8px;
	}

	.galleryforge-lightbox-next {
		right: 8px;
	}

	.galleryforge-lightbox-close {
		top: 10px;
		right: 10px;
	}
	.galleryforge-lightbox-title {
		bottom: 10px;
		max-width: 90%;
		font-size: 14px;
	}

}