/* Monospace font for Buddy character */
#buddy {
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.75rem;
  line-height: 1.3;
  white-space: pre;
  cursor: pointer;
  user-select: none;
}

/* Smooth progress bar transitions */
.bar-track {
  background: #1e293b;
  border-radius: 9999px;
  height: 0.5rem;
  overflow: hidden;
}

/* Prevent body scroll bounce on mobile */
html, body {
  overscroll-behavior: none;
}

/* Decision cards */
.decision-card {
  transition: background 0.15s;
}
.decision-card:active {
  background: #1e3a5f;
}
