.sotiaf-lightbox-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.9);
	display: none;
	z-index: 9999;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.sotiaf-lightbox-overlay.active {
	display: flex;
	opacity: 1;
	justify-content: center;
	align-items: center;
}

.sotiaf-lightbox-container {
	position: relative;
	width: 100vw;
	height: 100vh;
	margin: 0;
	transform: scale(0.9);
	transition: transform 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
}

.sotiaf-lightbox-overlay.active .sotiaf-lightbox-container {
	transform: scale(1);
}

.sotiaf-lightbox-image {
	max-width: 95vw;
	height: 100vh;
	width: auto;
	object-fit: contain;
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
	transition: transform 0.3s ease;
	user-select: none;
	position: relative;
	margin: auto;
}

.sotiaf-lightbox-buttons {
	position: fixed;
	top: 20px;
	right: 20px;
	display: flex;
	gap: 10px;
	z-index: 10001;
	background-color: rgba(0, 0, 0, 0.5);
	padding: 10px;
	border-radius: 5px;
}

.sotiaf-lightbox-close,
.sotiaf-lightbox-fullscreen,
.sotiaf-lightbox-zoom-in,
.sotiaf-lightbox-zoom-out {
	color: white;
	font-size: 24px;
	cursor: pointer;
	background: none;
	border: none;
	padding: 5px;
	transition: transform 0.2s ease;
	display: flex;
	align-items: center;
	justify-content: center;
}

.sotiaf-lightbox-zoom-in svg,
.sotiaf-lightbox-zoom-out svg,
.sotiaf-lightbox-close svg,
.sotiaf-lightbox-fullscreen svg,
.size-6 {
	width: 24px;
	height: 24px;
	stroke: white;
}

.sotiaf-lightbox-close:hover,
.sotiaf-lightbox-fullscreen:hover,
.sotiaf-lightbox-zoom-in:hover,
.sotiaf-lightbox-zoom-out:hover {
	transform: scale(1.1);
}

img.sotiaf-lightbox {
	cursor: pointer;
	transition: opacity 0.3s ease;
}

img.sotiaf-lightbox:hover {
	opacity: 0.8;
}
