/* Sketch (Paint) App Styles */

.paint-app {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #fff;
}

.paint-toolbar {
  padding: 8px;
  background: #f0f0f0;
  border-bottom: 1px solid #ccc;
  display: flex;
  gap: 10px;
  align-items: center;
  color: #333;
}

#paint-canvas {
  background: white;
  cursor: crosshair;
  touch-action: none;
  flex: 1;
  display: block;
}

