.stat-reset-confirm {
  display: block;
  width: calc(100% - 24px);
  margin: 12px auto 0;
  color: #fff7df;
  border: 1px solid #ffb84d;
  background: linear-gradient(135deg, #9a4d12, #d77b19);
  box-shadow: 0 0 0 0 #ffb84d99;
  animation: stat-reset-pulse 1s ease-in-out infinite;
}
.stat-reset-confirm[hidden] { display: none; }
.stat-reset-confirm:disabled { animation: none; }
.stat-reset-confirm.needs-review { border-color: #ff6f83; background: #652735; }
@keyframes stat-reset-pulse {
  0%, 100% { filter: brightness(1); box-shadow: 0 0 0 0 #ffb84d66; }
  50% { filter: brightness(1.35); box-shadow: 0 0 0 5px #ffb84d00; }
}
