/* 表格样式 - 占满宽度并按内容平分 */
.md-typeset table:not([class]) {
  width: 100%;
  display: table;
  table-layout: auto;
}

.md-typeset table:not([class]) th,
.md-typeset table:not([class]) td {
  min-width: 0;
}

/* 确保表格容器不限制宽度 */
.md-typeset__table {
  width: 100%;
}

.md-typeset__scrollwrap {
  overflow-x: visible;
}
