/* ── Shared Button Variants ── */

.stats-detail-btn {
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.25);
  color: rgba(165, 163, 255, 0.9);
  font-size: 0.7rem;
  letter-spacing: 2px;
  padding: 10px;
  border-radius: 12px;
  width: 100%;
  cursor: pointer;
  font-weight: 600;
  text-transform: uppercase;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
  margin-bottom: 8px;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.stats-detail-btn:hover,
.stats-detail-btn:focus-visible {
  background: rgba(99, 102, 241, 0.2);
  border-color: rgba(99, 102, 241, 0.5);
  color: #fff;
  box-shadow: 0 0 16px rgba(99, 102, 241, 0.25);
  outline: none;
}

.stats-detail-btn:active {
  transform: scale(0.97);
}

.wipe-stats-btn {
  background: transparent;
  border: none;
  box-shadow: none;
  backdrop-filter: none;
  color: rgba(255, 255, 255, 0.2);
  font-size: 0.6rem;
  letter-spacing: 2px;
  padding: 10px 8px;
  border-radius: 8px;
  width: 100%;
  cursor: pointer;
  font-weight: 600;
  text-transform: uppercase;
  transition: background 0.2s ease, color 0.2s ease;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  min-height: 36px;
}

.wipe-stats-btn:hover,
.wipe-stats-btn:focus-visible {
  background: rgba(239, 68, 68, 0.1);
  color: #f87171;
  outline: none;
}

.signout-btn {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.18);
  font-size: 0.6rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  padding: 6px 8px;
  border-radius: 6px;
  transition: color 0.2s ease;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  min-height: 32px;
}

.signout-btn:hover,
.signout-btn:focus-visible {
  color: rgba(239, 68, 68, 0.7);
  outline: none;
}