/* Additional styles beyond Tailwind */

/* Smooth scrolling for the log area */
#log-area {
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.8rem;
  line-height: 1.4;
  tab-size: 4;
}

/* Pulse animation for the status indicator */
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}
.animate-pulse-dot {
  animation: pulse-dot 2s ease-in-out infinite;
}

/* Button hover transitions */
.btn-action {
  transition: all 0.15s ease-in-out;
}
.btn-action:hover {
  transform: translateY(-1px);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
