#myBtn {
    display: none; /* Hidden by default */
    position: fixed; /* Fixed/sticky position */
    bottom: 50px; /* Place the button at the bottom of the page */
    right: 150px; /* Place the button 30px from the right */
    z-index: 99; /* Make sure it does not overlap */
    border: none; /* Remove borders */
    outline: none; /* Remove outline */
    background-color: #385a47; /* Set a background color */
    color: white; /* Text color */
    cursor: pointer; /* Add a mouse pointer on hover */
    padding: 15px; /* Some padding */
    border-radius: 10px; /* Rounded corners */
    font-size: 18px; /* Increase font size */
}
.news-title{
    margin-top: 30px;
    font-size: 40px;
    text-align: center;
    font-weight: 500;
}
.news-content table{
    width: 100%;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}
.news-content-month{
    color: white;
    background-color: #385a47;
    font-size: 25px;
}
.news-content-line {
    border-top: 1.5px solid #ccc; /* 線條顏色可調整 */
    margin: 5px auto;
    width: 100%; /* 與表格寬度比例，可視覺上微縮 */
}
.news-content td {
    height: 30px;
}
a {
    text-decoration: none;   /* 去除底線 */
    color: inherit;          /* 保持原文字顏色（不會變藍） */
}
a:hover {
    text-decoration: underline;  /* 滑鼠移上去如果要再出現底線可留這行；不想要就刪掉 */
    color: #385a47;
}