.print-popup #popup-body {
	display: flex;
	flex-direction: column;
	gap: 1em;
	min-width: 480px;
	max-width: 80vw;
}

.print-popup .print-options {
	display: grid;
	align-items: center;
	gap: 1em;
	justify-content: flex-end;
	grid-template-columns: 1fr 1fr;
}

.print-popup .print-field {
	display: flex;
	gap: 0.3em;
	align-items: center;
}

.print-popup .print-options.dicom-print-options {
	margin-bottom: 1em;
}

.print-popup .print-options.dicom-print-options .print-field .zeero-select {
	--select-width: 12em;
}

.print-popup .print-format-grid,
.report-popup .print-format-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, 8em);
	justify-content: center;
	gap: 0.6em;
	max-height: 35vh;
	overflow-y: auto;
	overflow-x: hidden;
	padding: 0.3em;
	border: 1px solid var(--secondary);
	border-radius: 0.3em;
}

.report-popup .print-format-grid {
	max-height: 11vh;
}

.print-popup .print-format-tile,
.report-popup .print-format-tile {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.5em;
	width: 7em;
	padding: 0.35em;
	border: 2px solid transparent;
	cursor: pointer;
	border-radius: 0.3em;
}

.print-popup .print-format-tile:hover,
.report-popup .print-format-tile:hover {
	background-color: var(--secondary-darker);
}

.print-popup .print-format-tile.selected,
.report-popup .print-format-tile.selected {
	border-color: var(--primary);
	background-color: var(--secondary-darker);
}

.print-popup .print-format-canvas,
.report-popup .print-format-canvas {
	border-radius: 2px;
}

.print-popup .print-format-name,
.report-popup .print-format-name {
	font-size: 0.8em;
	text-align: center;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	max-width: 100%;
}
