/* ===== Stats Dashboard ===== */
.stats-dashboard {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 12px;
    padding: 16px 24px;
}

.stat-card {
    background: transparent;
    border: none;
    border-radius: 6px;
    padding: 16px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.stat-card i {
    font-size: 20px;
    margin-bottom: 4px;
}

.stat-card h3 {
    font-size: 11px;
    font-weight: 500;
    color: #6b7280;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.stat-value {
    font-size: 24px;
    font-weight: 700;
    color: #111827;
    margin: 0;
    line-height: 1.2;
}

/* Card type colors - icons only */
.live-sites i { color: #22c55e; }
.down-sites i { color: #ef4444; }
.slow-sites i { color: #f97316; }
.seo-warnings i { color: #f97316; }
.broken-links i { color: #9ca3af; }
.rl-score i { color: #f97316; }

/* Remove all fill effects, pseudo-elements, animations */
.stat-card::before { display: none; }

@media (max-width: 768px) {
    .stats-dashboard {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
        padding: 12px 16px;
    }
    .stat-card { padding: 12px 8px; }
    .stat-card i { font-size: 16px; }
    .stat-value { font-size: 20px; }
}

@media (max-width: 480px) {
    .stats-dashboard { grid-template-columns: repeat(2, 1fr); }
}

/* Delete button styles are in reactive-dashboard.css */
