/*
Modal Box Iindex.php
*/


/* Popup overlay */
.popup-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;
}

/* Popup box */
.popup-box {
	background: #f0f3f4;
	padding: 30px;
	text-align: center;
	border-radius: 12px;
	max-width: 400px;
	width: 90%;
	box-shadow: 0 4px 20px rgba(0,0,0,0.3);
	animation: fadeIn 0.5s ease;
	position: relative;
}

.close-btn {
	position: absolute;
	top: 10px;
	right: 15px;
	font-size: 24px;
	cursor: pointer;
	color: #cf1c20;
}

.popup-box h2 {
	margin-bottom: 20px;
	font-size: 22px;
	color: #333;
}

 .popup-box button {
	background: #007BFF;
	color: white;
	border: none;
	padding: 12px 20px;
	border-radius: 8px;
	font-size: 16px;
	cursor: pointer;
	transition: background 0.3s ease;
} 

.popup-box button:hover {
	background: #0056b3;
}

@keyframes fadeIn {
	from { opacity: 0; transform: scale(0.8); }
	to { opacity: 1; transform: scale(1); }
}
