h4 {
    color: #4b74ab;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

/* 步驟列表樣式 */
.step-list {
    display: grid;
    gap: 1rem;
/*    margin-top: 2rem;*/
}

.step-item {
    background-color: #f8fafc;
    border-left: 5px solid #0f172a;
    padding: 1rem;
    border-radius: 0 8px 8px 0;
    transition: transform 0.2s;
}

.step-item:hover {
    transform: translateX(5px);
    background-color: #f1f5f9;
}

.step-item span {
    color: #4b74ab;
    ;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.step-item p {
    color: #334155;
    font-size: 0.95rem;
    margin: 0;
}

/* 條列樣式 */
.editor-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.editor-list li {
    position: relative;
    padding-left: 15px;
    margin-bottom: 4px;
    font-size: 1rem;
    line-height: 1.4;
}

.editor-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 6px;
    height: 6px;
    background-color: #4b74ab; /* 使用主題藍色作為點 */
    border-radius: 50%;
}

/* 無項目符號版本（適用於已有編號標題的條列，如稽核組織運作頁面） */
.editor-list-plain li {
    padding-left: 0;
}

.editor-list-plain li::before {
    display: none;
}

/* 表格核心樣式 */
.editor-table-container {
    width: 100%;
    overflow-x: auto;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.editor-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    background-color: white;
}

/* 表頭樣式 - 底色改為指定的 #4b74ab */
.editor-table thead tr {
    background-color: #4b74ab;
    color: #ffffff;
}

.editor-table th {
    padding: 18px 20px;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-bottom: 2px solid rgba(0,0,0,0.05);
}

/* 單元格樣式 */
.editor-table td {
    padding: 16px 20px;
    border-bottom: 1px solid #e2e8f0;
    /* 文字顏色使用深藍灰色 #1e293b */
    color: #1e293b;
    font-size: 1rem;
}

/* 隔行變色 */
.editor-table tbody tr:nth-child(even) {
    background-color: #fcfdfe;
}

/* 滑動效果 */
.editor-table tbody tr:hover {
    background-color: #f8fafc;
}

/* 強調文字使用 #4b74ab */
.text-blue-accent {
    color: #4b74ab;
    font-weight: 700;
}

/* 編號圓圈樣式 */
.num-circle {
    width: 2.5rem;
    min-width: 2.5rem;
    height: 2.5rem;
    min-height: 2.5rem;
    border-radius: 50%;
    background-color: #eff6ff;
    color: #4b74ab;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
    flex-shrink: 0;
    align-self: center;
}