/* CartSplitter - WooCommerce settings tab UI */

.cspc-hidden {
  display: none !important;
}

.cspc-stats-dashboard {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin: 20px 0 24px;
  padding: 0;
  position: relative;
}

.cspc-stat-card {
  background: #fff;
  border-radius: 3px;
  padding: 20px;
  text-align: center;
}

.cspc-stat-value {
  font-size: 28px;
  font-weight: 700;
  color: var(--cspc-stat-color, #2271b1);
  line-height: 1.2;
}

.cspc-stats-dashboard--locked .cspc-stat-value {
  filter: blur(4px);
  user-select: none;
  pointer-events: none;
}

.cspc-stat-label {
  margin-top: 6px;
  font-size: 13px;
  color: #646970;
}

.cspc-stats-note {
  margin: -14px 0 20px;
  font-size: 12px;
  color: #999;
}

