/* Demo plugin — browser-side stylesheet.
   Lives under the manifest "assets" prefix, so at publish it is split into
   plugin_assets.zip and served from /plugin-assets/demo/assets/demo.css
   (range-read from the asset zip, then CDN-cached). */
.demo-asset-banner {
  position: fixed;
  bottom: 16px;
  right: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 280px;
  padding: 10px 14px;
  background: #10b981;
  color: #fff;
  font: 13px/1.3 system-ui, -apple-system, sans-serif;
  border-radius: 10px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
  cursor: pointer;
  z-index: 99999;
}

.demo-asset-banner img {
  display: block;
  flex: 0 0 auto;
  border-radius: 4px;
}

.demo-asset-banner span {
  font-weight: 600;
}
