/* list-table のヘッダーの背景色と文字色を変更 */


table.list-table tr:first-child td {
    background-color: #007BFF !important;
    /* 背景色 */
    color: white !important;
    /* 文字色 */
    font-weight: bold !important;
    text-align: center !important;
}

/* my-table のヘッダーに色をつける */
table.my-table th {
    background-color: #007BFF !important;
    color: white !important;
}

table.list-table {
    border-collapse: collapse;
    border: 2px solid #333;
}

table.list-table th,
table.list-table td {
    border: 2px solid #333;
    padding: 6px 8px;
}

th {
    white-space: nowrap;
}

table.enum-table {
    table-layout: fixed;
    word-break: break-word;
}

table.enum-table tr:first-child td {
    background-color: #007BFF !important;
    /* 背景色 */
    color: white !important;
    /* 文字色 */
    font-weight: bold !important;
    text-align: center !important;
}

table.enum-table {
    border-collapse: collapse;
    border: 2px solid #333;
}

table.enum-table th,
table.enum-table td {
    border: 2px solid #333;
    padding: 6px 8px;
}

/* Mermaid の背景と文字色を固定する */
.mermaid {
    background-color: #ffffff !important;
    color: #000000 !important;
    border-radius: 6px;
    padding: 8px;
}