/**
 * QRGen Toolkit widget styles — the handful of things that aren't plain
 * Tailwind utility classes (which the theme's compiled stylesheet already
 * covers): the transparent-background checker pattern behind the QR
 * preview, and the injected QR <svg> sizing.
 */
.qrgen-preview-frame[data-transparent="true"] {
	background: repeating-conic-gradient(#e5e7eb 0% 25%, #fff 0% 50%) 50% / 16px 16px;
}
.qrgen-canvas > svg {
	height: 100%;
	width: 100%;
}
.qrgen-type-list {
	scrollbar-width: thin;
}
