/* Embed-only layout for /embed/screen-test/. The widget visuals come from the
   tool's /tools/screens/css/{shared,utilities}.css; this file just frames the
   launcher card for an iframe. The full-screen surface itself is appended to
   <body> by screen.js and fills the iframe viewport (position:fixed). */
html, body.lk-embed {
  margin: 0;
  padding: 0;
  background: transparent;
  min-height: 100vh;
}
body.lk-embed {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 14px;
  box-sizing: border-box;
}
.embed-stage {
  width: 100%;
  max-width: 520px;
}
/* The launcher's own .launcher wrapper sets max-width/padding we don't need
   inside the framed stage — the card carries its own surface + padding. */
.embed-stage .launcher-card { margin: 0; }
.embed-attrib {
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #4f46e5;
  text-decoration: none;
  opacity: 0.85;
}
.embed-attrib:hover { opacity: 1; text-decoration: underline; }
