/* ReturnCode 表格樣式 */
table.return-code {
    width: 100%;
    border-collapse: collapse;        /* 合併格線 */
    border: 2px solid #000;           /* 整體外框 */
    font-family: "Segoe UI", Arial, sans-serif;
    font-size: 15px;
}

table.return-code th,
table.return-code td {
    border: 1px solid #000;           /* 每格邊框 */
    padding: 6px 8px;
}

table.return-code th {
    background-color: #f2f2f2;        /* 標題列底色 */
    font-weight: bold;
    text-align: left;
}

/* 滑過每列變色（可選） */
table.return-code tr:hover td {
    background-color: #eef6ff;
}
