/* MCU Statistics - Frontend Counter Card Styles */
.mcu-stats-counter-card {
  font-family: 'Prompt', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 18px 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  max-width: 360px;
  margin: 16px auto;
  box-sizing: border-box;
}

.mcu-stats-counter-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid #f1f5f9;
}

.mcu-stats-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f0fdf4;
  color: #166534;
  font-size: 13px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  border: 1px solid #bbf7d0;
}

.mcu-pulse-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
  animation: mcu-pulse-sm 1.8s infinite;
}

@keyframes mcu-pulse-sm {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(34, 197, 94, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

.mcu-stats-counter-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.mcu-stats-item {
  background: #f8fafc;
  border: 1px solid #f1f5f9;
  border-radius: 10px;
  padding: 10px 12px;
  text-align: center;
}

.mcu-stats-label {
  font-size: 12px;
  color: #64748b;
  margin-bottom: 2px;
}

.mcu-stats-val {
  font-size: 18px;
  font-weight: 800;
  color: #0f172a;
}

.mcu-stats-val-primary {
  color: #db2777;
}

.mcu-stats-counter-footer {
  text-align: center;
  font-size: 11px;
  color: #94a3b8;
  margin-top: 12px;
  padding-top: 8px;
  border-top: 1px dashed #e2e8f0;
}
