body {
  background-color: #0f172a; /* Slate 900 */
  color: #e2e8f0; /* Slate 200 */
  font-family: 'Inter', sans-serif;
  overflow: hidden; /* Scrollbar wird in der App gehandhabt */
  margin: 0;
  padding: 0;
}

/* Custom Scrollbar für die Sidebar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #1e293b; 
}
::-webkit-scrollbar-thumb {
  background: #475569; 
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #64748b; 
}