#custom-modal {
	display: none;
	position: fixed;
	z-index: 1000;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.4);
    align-items: center;
    justify-content: center;
}

#custom-modal .modal-content {
    box-sizing: border-box;
	background-color: #0f0f0f;
	padding: 20px 30px;
	border: 2px solid #00ffe7;
	width: 90%;
	max-width: 500px;
	border-radius: 10px;
	box-shadow: 0 0 20px #00ffe7, 0 0 40px #ff00e7 inset;
	color: #00ffe7;
	position: relative;
	text-align: center;
}

#custom-modal #modal-close-btn {
	position: absolute;
	top: 10px;
	right: 20px;
	font-size: 28px;
	font-weight: bold;
	color: #ff00e7;
	cursor: pointer;
	transition: color 0.3s ease;
}

#custom-modal #modal-close-btn:hover {
	color: #00ffe7;
}

#custom-modal #modal-message {
	padding: 20px;
	font-size: 1.2rem;
	text-shadow: 0 0 5px #00ffe7;
}
