/* Minimal local CSS for docs */

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: #1f2937;
  background: #ffffff;
  margin: 0;
}

.page {
  max-width: 720px;
  margin: 0 auto;
  padding: 24px 16px 48px;
}

.page-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 1px solid #e5e7eb;
}

.logo-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #111827;
  font-weight: 700;
}

.logo {
  height: 36px;
  width: auto;
}

.product-name {
  font-size: 16px;
}

.nav-links {
  display: inline-flex;
  gap: 14px;
  font-size: 14px;
}

.nav-links a {
  color: #4b5563;
  text-decoration: none;
}

.nav-links a:hover {
  color: #2563eb;
}

.page-content section {
  padding: 16px 0;
  border-bottom: 1px solid #e5e7eb;
}

.page-content h1 {
  margin: 0 0 10px;
  font-size: 28px;
}

.page-content h2 {
  margin: 0 0 8px;
  font-size: 20px;
}

.page-content p {
  margin: 0 0 8px;
  color: #4b5563;
}

.actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 8px;
  margin-bottom: 4px;
}

.btn-primary, .btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  font-size: 14px;
}

.btn-primary {
  background: #2563eb;
  color: white;
  border: 1px solid #2563eb;
}

.btn-secondary {
  background: white;
  color: #2563eb;
  border: 1px solid #e5e7eb;
}

.btn-secondary:hover {
  border-color: #cbd5e1;
}

.code-block {
  position: relative;
  background: #0f172a;
  color: #e5e7eb;
  padding: 10px 12px;
  border-radius: 6px;
  font-family: 'Menlo', 'Monaco', monospace;
  font-size: 13px;
  overflow-x: auto;
  white-space: pre-wrap;
  border: 1px solid #1f2937;
}

.copy-btn {
  position: absolute;
  top: 8px;
  right: 8px;
  background: #111827;
  color: #e5e7eb;
  border: 1px solid #374151;
  border-radius: 4px;
  padding: 4px 8px;
  font-size: 12px;
  cursor: pointer;
}

.copy-btn:hover {
  background: #1f2937;
}

.inline-code {
  background: #f3f4f6;
  padding: 2px 6px;
  border-radius: 4px;
  font-family: 'Menlo', 'Monaco', monospace;
  font-size: 13px;
  border: 1px solid #e5e7eb;
}

.list-links {
  list-style: disc;
  padding-left: 18px;
  color: #4b5563;
}

.list-links a {
  color: #2563eb;
  text-decoration: none;
}

.list-links a:hover {
  color: #1e40af;
}

.page-footer {
  padding-top: 16px;
  font-size: 14px;
  color: #6b7280;
}
