@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=JetBrains+Mono:wght@300;400;500&display=swap'); @tailwind base; @tailwind components; @tailwind utilities; html, body, #root { margin: 0; padding: 0; height: 100%; background: transparent; overflow: hidden; user-select: none; } body { font-family: "Inter", system-ui, sans-serif; } /* Scrollbar styling for log viewer */ .log-scroll::-webkit-scrollbar { width: 6px; } .log-scroll::-webkit-scrollbar-track { background: transparent; } .log-scroll::-webkit-scrollbar-thumb { background: rgba(255, 255, 255, 0.15); border-radius: 3px; } .log-scroll::-webkit-scrollbar-thumb:hover { background: rgba(255, 255, 255, 0.25); }