/* Modal System Styles */
.modal-overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 10000;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.modal-overlay.show {
	display: flex;
	opacity: 1;
}

.modal-content {
	background-color: #ffffff;
	border-radius: 8px;
	padding: 30px;
	max-width: 500px;
	width: 90%;
	max-height: 90vh;
	overflow-y: auto;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	position: relative;
	transform: scale(0.9);
	transition: transform 0.3s ease;
}

.modal-overlay.show .modal-content {
	transform: scale(1);
}

.modal-header {
	margin-bottom: 20px;
}

.modal-header h2 {
	margin: 0;
	color: #333;
	font-size: 24px;
}

.modal-body {
	margin-bottom: 20px;
	color: #666;
	line-height: 1.6;
}

.modal-footer {
	text-align: right;
}

.modal-close {
	background-color: #007bff;
	color: white;
	border: none;
	padding: 10px 20px;
	border-radius: 4px;
	cursor: pointer;
	font-size: 16px;
}

.modal-close:hover {
	background-color: #0056b3;
}

.modal-close-x {
	position: absolute;
	top: 10px;
	right: 10px;
	background: none;
	border: none;
	font-size: 24px;
	cursor: pointer;
	color: #999;
	width: 30px;
	height: 30px;
	line-height: 30px;
	text-align: center;
}

.modal-close-x:hover {
	color: #333;
}

.update-item {
	margin-bottom: 25px;
	padding-bottom: 25px;
	border-bottom: 1px solid #eef2f7;
}

.update-item:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: none;
}

.update-item h3 {
	margin: 0 0 10px 0;
	color: #1a5f7a;
	font-size: 18px;
}

.update-date {
	font-size: 14px;
	font-weight: normal;
	color: #7f8c8d;
	margin-left: 10px;
}

.update-content {
	color: #666;
	line-height: 1.6;
}

.update-content p {
	margin: 0 0 10px 0;
}

.update-content p:last-child {
	margin-bottom: 0;
}

