/* Custom scrollbar for a techy feel */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: #1a1a1a; 
}
::-webkit-scrollbar-thumb {
  background: #444; 
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #555; 
}

body {
  background-color: #0f0f0f;
  color: #e0e0e0;
}

/* Prevent drag-and-drop flickering */
.drag-overlay {
  pointer-events: none;
}