* {
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: #f7fafc;
  padding: 2rem;
  margin: 0;
  min-height: 100vh;
}

.demo-container {
  max-width: 600px;
  margin: 0 auto;
}

h1 {
  font-size: 1.5rem;
  color: #2d3748;
  margin-bottom: 0.5rem;
}

.subtitle {
  color: #718096;
  margin-bottom: 2rem;
}

.widget-wrapper {
  margin-bottom: 2rem;
}

.code-section {
  background: #2d3748;
  color: #e2e8f0;
  padding: 1rem 1.25rem;
  border-radius: 8px;
  font-family: "SF Mono", Monaco, monospace;
  font-size: 0.875rem;
  overflow-x: auto;
}

.code-section code {
  white-space: pre;
}

.section-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: #4a5568;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

