.col-md-3 {
    display: none !important;
}
.col-md-9 {
    width: 80% !important;
    max-width: 800px !important; 
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px; 
    padding-right: 20px;
}
@media (min-width: 992px) {
    .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 {
        float: none;
    }
}
table {
    width: 100%;               
    max-width: 100%;           
    overflow: auto;            
    border-collapse: collapse; 
    margin: 1em 0;             
    font-size: 0.9em;          
    display: table; 
}
td {
    word-break: break-word;
    white-space: normal;
}
code {
    color: #e83e8c; /* 粉红色字体 */
    background-color: #f8f9fa !important; /* 浅灰色背景 */
    padding: 0.2em 0.4em;
    border-radius: 3px;
    font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, Courier, monospace;
}

/* 覆盖代码块（`pre` 内的 `code`）的样式 */
pre {
    background-color: #f5f5f5 !important; 
}
pre code {
    display: block;
    color: #333; /* 深灰色字体 */
    background-color: #f5f5f5 !important; /* 稍深的灰色背景 */
    padding: 1em;
    border-radius: 5px;
    border-left: 2px solid #e83e8c; /* 左侧蓝色装饰条 */
    overflow-x: auto;
    font-size: 0.9em;
    line-height: 1.5;
}
