/* Minimal custom styles - Tailwind handles most styling */
body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Active navigation button highlight */
.nav-btn.active {
    background-color: #2563eb;
    color: white;
}

/* Smooth transitions */
.btn {
    transition: all 0.15s ease-in-out;
}

/* Console scrollbar styling */
#live-console::-webkit-scrollbar,
#stats-console::-webkit-scrollbar {
    width: 6px;
}

#live-console::-webkit-scrollbar-track,
#stats-console::-webkit-scrollbar-track {
    background: #f1f1f1;
}

#live-console::-webkit-scrollbar-thumb,
#stats-console::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 3px;
}

#live-console::-webkit-scrollbar-thumb:hover,
#stats-console::-webkit-scrollbar-thumb:hover {
    background: #999;
}
