/**
 * PPDD 站点统计 - 前端样式
 */

.ppdd-stats-shortcode {
    margin: 20px 0;
}

.ppdd-stats-shortcode .ppdd-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
}

.ppdd-stats-shortcode .ppdd-stat-card {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid #e9ecef;
}

.ppdd-stats-shortcode .stat-value {
    font-size: 28px;
    font-weight: bold;
    color: #2271b1;
}

.ppdd-stats-shortcode .stat-label {
    font-size: 13px;
    color: #646970;
    margin-top: 5px;
}

.ppdd-article-stats {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    margin: 20px 0;
}

.ppdd-article-stats h3 {
    margin-top: 0;
}

.ppdd-real-rate {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #eee;
    font-size: 16px;
}

.ppdd-good {
    color: #4CAF50;
    font-weight: bold;
}

.ppdd-bad {
    color: #f44336;
    font-weight: bold;
}

.ppdd-warning {
    color: #FF9800;
    font-weight: bold;
}

/* 响应式 */
@media (max-width: 782px) {
    .ppdd-stats-shortcode .ppdd-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
