 /* 隱藏內容的初始樣式 */
        .content {
            display: none;
            padding: 15px;
            background-color: #f1f1f1;
            margin-top: 10px;
        }
       /* 橫條的樣式 */
        .bar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            background-color: #f2f2f2;
            padding: 10px 20px;
            border: 1px solid #ddd;
        }
        /* 按鈕的樣式 */
        .button {
            padding: 8px 16px;
            background-color: #4CAF50;
            color: white;
            border: none;
            cursor: pointer;
        }
        .button:hover {
            background-color: #45a049;
        }
      /* 三欄表格 */
      table {
            width: 100%;
            border-collapse: collapse;
        }
        th, td {
            border: 1px solid #ddd;
            padding: 8px;
            text-align: left;
        }
        th {
            background-color: #f2f2f2;
        }
       /* 調整每一欄的寬度 */
        th:first-child, td:first-child {
            width: 10%; /* 更新時間欄 */
        }
        th:nth-child(2), td:nth-child(2) {
            width: 50%; /* 名稱欄 */
        }
        th:last-child, td:last-child {
            width: 20%; /* 載點連結欄 */
        }