/* Shared overlay buttons for demo pages (CodePen, More About, etc.) */
.demo-buttons {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 100;
  display: flex;
  gap: 6px;
  align-items: center;
}

.demo-buttons a,
.demo-buttons button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: rgba(0,0,0,0.6);
  color: #fff;
  border: none;
  border-radius: 4px;
  font-family: -apple-system, sans-serif;
  font-size: 11px;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s;
  text-decoration: none;
}
.demo-buttons a:hover,
.demo-buttons button:hover { opacity: 1; }
.demo-buttons svg { width: 14px; height: 14px; }
