    
    
    /* 標題區 */
    

    .header-section {
      text-align: center;
      position: relative;
      margin-bottom: 15px;
    }

    .main-title-zh {
      font-size: 24px;
      font-weight: bold;
      letter-spacing: 1px;
      margin-bottom: 4px;
    }

    .main-title-en {
      font-size: 22px;
      font-weight: bold;
      line-height: 1.2;
      max-width: 550px;
      margin: 0 auto;
    }

    .meta-info {
      text-align: right;
      font-size: 13px;
      color: #333;
      margin-top: 10px;
      line-height: 1.4;
    }

    hr.divider {
      border: none;
      border-top: 1.5px solid #bbb;
      margin: 15px 0 20px 0;
    }

    /* 內文章節排版 */
    .section-title {
      font-size: 15px;
      font-weight: bold;
      margin-top: 10px;
      margin-bottom: 10px;
      color: #0086e8;
    }

    .sub-section {
      padding-left: 20px;
      margin-bottom: 12px;
      font-size: 14px;
      line-height: 1.5;
    }

    .sub-title {
      font-weight: bold;
      margin-bottom: 4px;
      margin-top: 4px;
    }

    .indented-content {
      padding-left: 24px;
      margin-bottom: 24px;

    }

    /* 左上角騎縫章印章風格 */
    .stamp-placeholder {
      position: absolute;
      top: 15px;
      left: 15px;
      width: 120px;
      height: 120px;
      border: 2px dashed #93b5cf;
      border-radius: 50%;
      color: #8faec7;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      font-size: 12px;
      transform: rotate(-10deg);
      opacity: 0.6;
      pointer-events: none;
    }


     table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 4px;
  }
    table.custom-table thead{
    background-color:#eee;
    
    }
    table.custom-table {
      width: 100%;
      border-collapse: collapse;
      border: 1.5px solid #000;
      font-size: 14px;
      line-height: 1.5;
      
    }

    table.custom-table th, 
    table.custom-table td {
      border: 1.5px solid #ddd;
      padding: 10px;
      vertical-align: middle;
    }
    table.custom-table tbody tr  :nth-child(even){
        
    }
.row {
    display: flex; /* 記得要加上這行才能啟用 Flexbox */
}

.col-left {
    width: 380px; /* 設定桌機版的預設寬度 */
}

.col-right {
    flex: 1;
}

@media (max-width: 768px) {
    .row {
        flex-direction: column;
    }
    .col-left, .col-right {
        width: 100%;
    }
}


    /* 欄位寬度設定 */
    .col-reaction {
      
      text-align: center;
    }

    .col-severity {
      text-align: center;
            
    }

    .col-adjustment {
      
      text-align: left;
    }

    /* 列表內部排版 */
    .adjustment-list {
      margin: 0;
      padding-left: 20px;
    }

    .adjustment-list li {
      margin-bottom: 6px;
    }

    .adjustment-list li:last-child {
      margin-bottom: 0;
    }

    /* 強制讓該頁面的內容區加上左右 15px 空隙 */
.container-in-page {
    padding-left: 15px !important;
    padding-right: 15px !important;
}

/* 確保裡面的 row 不會透過負邊距把空隙拉掉 */
.container-in-page .row {
    margin-left: 0 !important;
    margin-right: 0 !important;
}