/**
 * FlowContent WooCommerce Template Styles
 */
.flowcontent-woo-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }
.flowcontent-card-wide { grid-column: 1 / -1; }
.stats-row { display: flex; gap: 20px; margin: 20px 0; }
.stat-box { flex: 1; text-align: center; padding: 15px; background: #f5f5f5; border-radius: 5px; }
.stat-value { display: block; font-size: 24px; font-weight: bold; }
.stat-label { display: block; font-size: 12px; color: #666; }
.sync-progress { margin: 20px 0; }
.progress-bar { height: 20px; background: #eee; border-radius: 10px; overflow: hidden; }
.progress-fill { height: 100%; background: linear-gradient(90deg, #0073aa, #00a0d2); transition: width 0.3s; }
.progress-text { text-align: center; margin-top: 10px; color: #666; }
.sync-actions { text-align: center; }
.order-status { display: inline-block; padding: 3px 8px; border-radius: 3px; font-size: 12px; }
.status-completed { background: #c6e1c6; color: #5b841b; }
.status-processing { background: #c8d7e1; color: #2e4453; }
.status-pending { background: #f8dda7; color: #94660c; }
.status-cancelled { background: #eba3a3; color: #761919; }
