/*
 * OpenClaw Sketch Icon System
 * Hand-drawn SVG icons in single warm gold color.
 * All sketch SVGs must use: stroke="rgba(196,168,130,0.55)" fill="none"
 * stroke-width: 1.5 (primary), 1.0 (secondary), 0.8 (tertiary)
 * stroke-linecap="round" stroke-linejoin="round"
 */

.oc-sketch {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.oc-sketch svg {
  width: 100%;
  height: 100%;
}
.oc-sketch-xs { width: 16px; height: 16px; }
.oc-sketch-sm { width: 20px; height: 20px; }
.oc-sketch-md { width: 24px; height: 24px; }
.oc-sketch-lg { width: 32px; height: 32px; }
.oc-sketch-xl { width: 48px; height: 48px; }
.oc-sketch-2xl { width: 64px; height: 64px; }
