/* 返回至頂按鈕樣式 */
#topButton {
    position: fixed;
    bottom: 30px; /* 距離底部 */
    right: 30px; /* 距離右側 */
    z-index: 99; /* 保證按鈕在其他元素之上 */
    border: none;
    outline: none;
    background-color: #3498db; /* 淺藍色 */
    color: white;
    cursor: pointer;
    padding: 15px;
    border-radius: 8px; /* 方形按鈕但有圓角 */
    font-size: 18px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* 加上陰影讓按鈕更有立體感 */
    display: none; /* 預設隱藏按鈕 */
    transition: all 0.3s ease; /* 增加過渡效果 */
}

#topButton:hover {
    background-color: #2980b9; /* 鼠標懸停時的深藍色 */
    transform: scale(1.1); /* 當鼠標懸停時，按鈕會輕微放大 */
}
