/* Custom styles - most styling done via Tailwind CDN */

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #a1a1a1;
}

/* Log output styling */
#logOutput {
  background: #1a1a2e;
  color: #e4e4e4;
  font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
  font-size: 13px;
  line-height: 1.6;
}

#logOutput .text-green-600 {
  color: #4ade80;
}

#logOutput .text-red-600 {
  color: #f87171;
}

#logOutput .text-indigo-600 {
  color: #818cf8;
}

#logOutput .text-gray-400 {
  color: #6b7280;
}
