.lightbox-dialog {
	padding: 0;
	border: 0;
	width: 100vw;
	height: 100vh;
	max-width: none;
	max-height: none;
	margin: 0;
	display: none;
	overflow: hidden;
	background: transparent;
}

.lightbox-dialog[open] {
	display: flex;
	align-items: center;
	justify-content: center;
}

.lightbox-dialog::backdrop {
	background: rgba(0, 0, 0, 0.6);
}

.lightbox-image {
	display: block;
	max-width: 100vw;
	max-height: 100vh;
	width: auto;
	height: auto;
}

.lightbox-close {
	position: fixed;
	top: 12px;
	right: 12px;
	z-index: 1;
}

.lightbox-trigger {
	cursor: zoom-in;
}
