/* Simple Modal - Sans Bootstrap */
.simple-modal-overlay {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.7);
	z-index: 10000;
	display: flex;
	align-items: center;
	justify-content: center;
	animation: fadeIn 0.2s ease-in-out;
}

.simple-modal-container {
	background: linear-gradient(145deg, rgba(40, 40, 50, 0.98), rgba(30, 30, 40, 0.98));
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 20px;
	padding: 30px;
	max-width: 500px;
	width: 90%;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
	animation: slideIn 0.3s ease-out;
	text-align: center;
}

.confirm-icon {
	width: 80px;
	height: 80px;
	margin: 0 auto 20px;
	background: linear-gradient(145deg, rgba(254, 174, 0, 0.2), rgba(254, 174, 0, 0.1));
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 2px solid rgba(254, 174, 0, 0.3);
}

.confirm-icon i {
	font-size: 36px;
	color: #feae00;
}

.modern-modal-title {
	font-size: 24px;
	font-weight: 600;
	color: #ffffff;
	margin: 0 0 15px 0;
}

.modern-modal-text {
	font-size: 16px;
	color: rgba(255, 255, 255, 0.8);
	margin: 0 0 30px 0;
	line-height: 1.5;
}

.modern-modal-footer {
	display: flex;
	gap: 15px;
	justify-content: center;
}

.modern-modal-cancel,
.modern-modal-validate {
	padding: 12px 30px;
	border: none;
	border-radius: 10px;
	font-size: 16px;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	gap: 8px;
}

.modern-modal-cancel {
	background: rgba(255, 255, 255, 0.1);
	color: #ffffff;
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.modern-modal-cancel:hover {
	background: rgba(255, 255, 255, 0.15);
	transform: translateY(-2px);
}

.modern-modal-validate {
	background: linear-gradient(145deg, #feae00, #f39c12);
	color: #ffffff;
	box-shadow: 0 4px 15px rgba(254, 174, 0, 0.4);
}

.modern-modal-validate:hover {
	background: linear-gradient(145deg, #f39c12, #e67e22);
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(254, 174, 0, 0.6);
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

@keyframes slideIn {
	from {
		transform: translateY(-50px);
		opacity: 0;
	}
	to {
		transform: translateY(0);
		opacity: 1;
	}
}
