/* 让表格宽度铺满容器 */
.markdown-section table {
    display: table;
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1.5rem;
}

/* 优化表头背景色，使其更具辨识度 */
.markdown-section table thead {
    background-color: #f8f8f8;
}

/* 调整各列的分布比例 */
.markdown-section table th, 
.markdown-section table td {
    padding: 12px 15px;
    border: 1px solid #dfe2e5;
    text-align: center; /* 居中对齐 */
}

/* 按钮样式优化（可选） */
.markdown-section table a[href$=".apk"], 
.markdown-section table a[href$=".zip"] {
    text-decoration: none;
    background-color: #42b983;
    color: white;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.9em;
}

.markdown-section table a[href$=".apk"]:hover,
.markdown-section table a[href$=".zip"]:hover {
    background-color: #35a373;
}