iframe-gen {
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	height: 100vh;
	overflow: hidden;
	padding: 0;
	margin: 0;
	flex-direction: column;
	width: 100vw;
	display: flex;
	scrollbar-width: none;
	gap: unset;
	justify-content: center;
	align-items: center;
	z-index: 6;
	backdrop-filter: blur(6px) brightness(66%);
}

iframe-gen iframe {
	overflow: auto;
	padding: 0;
    border-top-left-radius: 0.5rem;
    border-top-right-radius: 0.5rem;
    border-bottom-right-radius: 0.5rem;
    border-bottom-left-radius: 0.5rem;
	box-shadow: 0 0 1rem rgb(0, 0, 0);
	margin: 0;
    background-color: var(--theme-background);
}

iframe-gen.mod_wide iframe {
    width: 80vw;
    height: 80vh;
}

iframe-gen.mod_popup iframe {
    width: 40vw;
    height: 80vh;
}




.iframed confirm-mod {
	border-radius: 0.5em;
}