.modal {
	display: block;
	position: fixed;
	z-index: 9999;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.6);
	direction: rtl;
}

.modal-dialog {
	background-color: #fefefe;
	margin: 10% auto;
	border-radius: 8px;
	width: 90%;
	max-width: 600px;
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
	animation: fadeIn 0.25s ease-in-out;
}

.modal-header {
	padding: 16px 24px;
	background-color: #1d9dae;
	color: #fff;
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-top-right-radius: 8px;
	border-top-left-radius: 8px;
}

.modal-title {
	font-size: 17px;
	font-weight: bold;
}

.modal-close {
	cursor: pointer;
	font-size: 24px;
	color: #ccc;
}

.modal-close:hover {
	color: #fff;
}

.modal-body {
	padding: 20px 24px;
	font-size: 15px;
	line-height: 2;
	color: #222;
}

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