/* 有序與無序清單 */
.editor-content ol {
    list-style: decimal;
    margin-left: 2em;
    padding-left: 1em;
    list-style-position: outside;
}
.editor-content ul {
    list-style: disc;
    margin-left: 2em;
    padding-left: 1em;
    list-style-position: outside;
}
.editor-content li {
    margin-bottom: 0.5em;
}
.editor-content ol ol,
.editor-content ul ul {
    margin-top: 0.5em;
    margin-bottom: 0.5em;
}

/* 表格修復 */
.editor-content table {
    border-collapse: collapse;
    width: 100%;
    margin-bottom: 1em;
}
.editor-content table,
.editor-content th,
.editor-content td {
    border: 1px solid #000; /* 黑色邊線 */
}
.editor-content th,
.editor-content td {
    padding: 0.5em;
    text-align: left;
}
.editor-content td.text-center {
    text-align: center;
}
.editor-content td.text-right {
    text-align: right;
}

/* 圖片修正 */
.editor-content img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0.5em 0;
}

/* blockquote 修正 */
.editor-content blockquote {
    padding: 0.5em 1em;
    margin: 1em 0;
    border-left: 4px solid #ccc;
    background: #f8f9fa;
    color: #555;
}

/* 超連結樣式（避免 Bootstrap 改色） */
.editor-content a {
    color: #0d6efd;
    text-decoration: underline;
}
.editor-content a:hover {
    color: #0a58ca;
}

/* 水平線 <hr> */
.editor-content hr {
    border: none;
    border-top: 1px solid #ccc;
    margin: 2em 0;
}