.modal-body {
  width: 100%;
}

.modal.fade.show {
  transform: none !important;
}

.modal-dialog-size {
	width: 99.6% !important;
	max-width: 99.6% !important;
	height: 99.6%;
}

.modal-content {
	height: 99.6%;
}

.floating-title {
	position: absolute;
	top: 5px;
	left: 5px;
	background-color: white;
	padding: 0 10px;
	font-weight: bold;
	color: #0d6efd;
	/* Bootstrap primary color */
}

.card {
	position: relative;
	/* タイトルを絶対配置するため */
	padding-top: 10px;
	/* タイトルの分だけ上の余白を増やす */
}

/*
.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
*/

footer {
	clear: both;
	width: 100%;
	background-color: #f8f9fa;
	height: 60px;
	text-align: center;
	padding: 10px;
}

.thumbnail-container {
	display: inline-block;
	position: relative;
	text-align: center;
	margin: 5px;
}

.delete-btn {
	position: absolute;
	top: -10px;
	left: 100px;
	background: rgba(255, 0, 0, 0.7);
	color: white;
	border: none;
	border-radius: 50%;
	width: 25px;
	height: 25px;
	font-size: 14px;
	line-height: 22px;
	text-align: center;
	cursor: pointer;
	padding: 0;
	display: flex;
	justify-content: center;
	align-items: center;
}

.delete-btn:hover {
	background: red;
}