/* 让文档内容占满整个屏幕宽度 */
.wy-nav-content {
    max-width: 80% !important;  /* 覆盖默认的 800px 限制 */
    padding: 2rem 3rem;          /* 调整内边距，避免内容贴边 */
}

/* 调整侧边栏和内容的相对宽度 */
.wy-grid-for-nav {
    max-width: none !important;
}

/* 可选：调整代码块和表格的宽度 */
.rst-content .highlight>pre,
.rst-content table.docutils {
    width: 100%;
}
/* 自定义文本高亮样式 */
.highlight-text {
    background-color: #f3f4f7;  /* 灰色背景 */
    padding: 0.2em 0.4em;       /* 内边距 */
    border-top: 3px solid #ff0000; /* 红色顶部边框 */
    display: inline-block;      /* 确保边框生效 */
}
/* 显示所有层级的导航标题 */
.md-nav--primary .md-nav__list {
    display: block !important;
}
.md-nav__item .md-nav__list {
    display: block !important;
}

.wy-menu-vertical a[href^="http"] {
    color: #55a5d9 !important;  /* 你可以换成你想要的蓝色 */
    font-weight: bold;
    text-transform: uppercase;  /* 添加大写字母效果 */
}