@charset "utf-8";
/*body {
	font-family: Arial, sans-serif;
	margin: 0;
	padding: 0;
}*/
.overlay {
	display: flex;
	justify-content: center;
	align-items: center;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.3);
	z-index: 1000;
}
.popup {
	background: #FFFFFF;
	padding: 20px;
	border-radius: 8px;
	text-align: center;
	max-width: 720px; /* 最大寬度為720px */
	width: 60%;
	max-height: 80%; /* 最大高度為80% */
	overflow-y: auto; /* 啟用垂直滾動條 */
}
.close-btn {
	margin-top: 20px;
	padding: 10px 15px;
	border: none;
	background-color: #007BFF;
	color: white;
	border-radius: 5px;
	cursor: pointer;
}
.close-btn:hover {
	background-color: #0056b3;
}
.article-subject {
    text-align: center;
    font-weight: bold;
    font-family: "Noto Serif", "Times New Roman", serif;
}
.signature {
    text-align: right;
    font-weight: bold;
}
