section #imageList {
	margin-top: 2rem;
}
section #imageList:empty {
	margin-top: 0;
}
section .box {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	padding: 1.3rem;
	border: 1px solid var(--color-gray);
	border-radius: 0.5rem;
	margin-top: 1.5rem;
}
section .box .thumbnail {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 30%;
	aspect-ratio: 3 / 2;
	border-radius: 0.5rem;
	background-color: var(--color-gray);
	line-height: 0;
	overflow: hidden;
}
section .box .thumbnail img {
	object-fit: contain;
	line-height: 0;
}
section .box .description {
	width: 68%;
}
section .box .filename {
	font-size: 1.5rem;
	background-color: var(--color-dark-white);
	border-radius: 0.5rem;
	padding: 1.5rem;
}
section .box .output-wrapper {
	margin-top: 1rem;
}
section .box .output-wrapper .copy-button {
	top: 0.9rem;
}
section .box .output-wrapper {
	font-size: 1.5rem;
}
section .output-wrapper pre {
	min-height: fit-content;
}