.modal-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.6);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 9999;
}

.modal-content {
	background: white;
	padding: 2rem;
	border-radius: 10px;
	width: 90%;
	max-width: 800px;
	max-height: 90vh;
	overflow-y: auto;
	position: relative;
	box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.close-btn {
	position: absolute;
	top: 10px;
	right: 15px;
	font-size: 1.5rem;
	background: none;
	border: none;
	cursor: pointer;
}
