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

@layer base {
  :root {
    --background: #0d0d0d;
    --foreground: #e8e8e8;
    
    --card: #181818;
    --card-foreground: #f0f0f0;
    
    --popover: #181818;
    --popover-foreground: #f0f0f0;
    
    --primary: #0099ff;
    --primary-foreground: #ffffff;
    
    --secondary: #1a1a1a;
    --secondary-foreground: #e8e8e8;
    
    --muted: #262626;
    --muted-foreground: #888888;
    
    --accent: #1a1a1a;
    --accent-foreground: #f0f0f0;
    
    --destructive: #ff4d4d;
    --destructive-foreground: #ffffff;
    
    --border: #2a2a2a;
    --input: #262626;
    --ring: #0099ff;
  }
}

@layer base {
  * {
    @apply border-border;
  }
  body {
    @apply bg-background text-foreground antialiased;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
  }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: hsl(var(--secondary));
}
::-webkit-scrollbar-thumb {
  background: hsl(var(--muted));
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: hsl(var(--muted-foreground));
}
