#image-gallery-list {
	list-style-type: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
}

#image-gallery-list li {
	margin: 5px;
	position: relative;
}

#image-gallery-list img {
	max-width: 100px;
	height: auto;
}

.remove-image-button {
	position: absolute;
	top: 0;
	right: 0;
	background: red;
	color: white;
	border: none;
	cursor: pointer;
}