@tailwind base;
@tailwind components;
@tailwind utilities;

/* Custom scrollbar to match Blender UI */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: #1d1d1d; 
}
::-webkit-scrollbar-thumb {
  background: #444; 
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #555; 
}

body {
  background-color: #111;
  color: #e5e5e5;
  overflow: hidden; /* Prevent scrolling when using shortcuts */
}