/* Custom styles supplementing Tailwind CSS */
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: #020617;
}
::-webkit-scrollbar-thumb {
  background: #1e293b;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #334155;
}

/* Dynamic pulse for processing */
.pulse-step {
  animation: pulse-step-animation 1.5s infinite ease-in-out;
}

@keyframes pulse-step-animation {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
