button:hover {
	filter: brightness(0.8);
}
input[type='file'] {
	display: none;
}
.container {
	display: flex;
    flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 100%;
	margin-top: 50px;
}
.btn-primary {
	border: 1px solid #620404;
	background-color: #620404;
	color: white;
	padding: 6px 0px;
	border-radius: 5px;
	display: inline-block;
	cursor: pointer;
	text-transform: uppercase;
	font-size: 18px;
	width: 150px;
	text-align: center;
}
.btn-outline {
	border: 1px solid #620404;
	background-color: white;
	color: #620404;
	padding: 6px 0px;
	border-radius: 5px;
	display: inline-block;
	cursor: pointer;
	text-transform: uppercase;
	font-size: 18px;
	width: 150px;
	text-align: center;
}
li {
	margin: 10px;
}
.hover:hover {
	transform: scale(1.2);
	cursor: pointer;
}
.filename {
	color: #50858b;
	text-align: center;
}
.overlay {
	display: none;
	background-color: #ddd;
	width: 100vw;
	height: 100vh;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 5;
	opacity: 50%;
}
.alert-modal {
	display: none;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 10;
	width: 650px;
	border-radius: 5px;
	border: 1px solid #620404;
	background-color: white;
}
.alert-modal-header {
	border-bottom: 1px solid #620404;
}
.alert-modal-header-content {
	display: flex;
	justify-content: space-between;
	padding: 0px 10px;
	font-size: 20px;
}
.alert-body {
	padding: 10px;
	max-height: 400px;
	overflow-y: auto;
}
.alert-body li {
	padding: 0;
	margin: 0;
}
.alert-modal-buttons {
	text-align: right;
	padding: 10px;
}