/* 字数统计工具专属样式 */
.wc-stats {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 12px;
    margin-top: 20px;
}
.wc-stat-item {
    padding: 14px 16px;
    border-radius: var(--theme-card-radius, 8px);
    background: var(--theme-card-bg, #f7f9fc);
    border: 1px solid var(--theme-border-color, #eef2f7);
}

.wc-stat-num {
    font-size: 24px;
    font-weight: 600;
    color: var(--theme-color, #4e8cff);
    line-height: 1.2;
}

.wc-stat-label {
    margin-top: 4px;
    font-size: 13px;
    color: var(--theme-text-color, #888);
}
.wc-action-btns{
    margin-top: 30px;
    text-align: center;
}
.wc-action-btns .ange-btn {
    /*margin-bottom: 10px;*/
    margin-right: 8px;
}

.wc-stat-tip {
    margin-top: 12px;
    font-size: 13px;
    color: var(--theme-text-color, #888);
    line-height: 1.8;
}

.wc-stat-tip p {
    margin: 0 0 4px;
}
