/* docs/css/custom.css */
.wm-toctree li a:before {
    font-family: inherit !important; /* 禁用默认字体图标 */
    content: "";
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-right: 8px;
    background-size: contain;
    background-repeat: no-repeat;
    vertical-align: middle;
}

/* 针对不同目录加载不同背景图 (需在 HTML 中配合 data 属性或特定 class) */
/* 这里使用通用选择器示例，实际需配合 Jinja2 模板动态注入 class */
.wm-toctree li[data-module="BK"] a:before { background-image: url('../overrides/assets/icons/bk.svg'); }
.wm-toctree li[data-module="Dbase"] a:before { background-image: url('../overrides/assets/icons/dbase.svg'); }

/* 页脚样式调整 */
footer {
    text-align: center;
    font-size: 0.8rem;
    padding: 20px;
    border-top: 1px solid #333;
}
