.modal {
	display: none;
	position: fixed;
	left: 2;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.875) !important;
	animation: fadeIn 0.5s ease forwards;
	z-index: 999;
}

.modal-content {
	background: #fff;
	margin: 10% auto;
	padding: 25px;
	border-radius: 12px;
	width: 420px;
	text-align: center;
	position: relative;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
	opacity: 0;
	transform: scale(0.8);
	animation: popUp 0.6s ease forwards;
}

.bg-dark .modal-content {
	background: #1d1c1c;
}

.modal-content p {
	font-size: 16px;
	margin: 10px 0;
}

@media only screen and (max-width: 640px) {
	.modal-content {
		width: 90%;
		margin: 20% auto;
	}
	p {
		font-size: 14px;
		margin: 5px 0;
	}
}

.close {
	position: absolute;
	top: 10px;
	right: 15px;
	font-size: 22px;
	cursor: pointer;
}

/* Animations */
@keyframes fadeIn {
	from {
		background: rgba(0, 0, 0, 0);
	}
	to {
		background: rgba(0, 0, 0, 0.5);
	}
}

@keyframes popUp {
	from {
		opacity: 0;
		transform: scale(0.8);
	}
	to {
		opacity: 1;
		transform: scale(1);
	}
}
