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

html,
body,
#app {
  height: 100%;
  margin: 0;
}

#app {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background: hsl(var(--background));
  color: hsl(var(--foreground));
}

.bp-dev-toolbar {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 12px;
  border-bottom: 1px solid hsl(var(--border));
  background: hsl(var(--card));
  font-size: 12px;
}

.bp-dev-toolbar strong {
  font-weight: 600;
}

.bp-dev-canvas {
  flex: 1;
  min-height: 0;
}
