.modal {
	position: fixed;
	z-index: 1000;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background: rgba(0, 0, 0, 0.5);
	display: flex;
	align-items: center;
	justify-content: center;
}

.modal-content {
	background: #fff;
	padding: 2rem;
	border-radius: 8px;
	position: relative;
	min-width: 300px;
}

.close {
	position: absolute;
	top: 10px;
	right: 20px;
	font-size: 2rem;
	cursor: pointer;
}
