/* default styles for extension "tx_macro" */
    html, body {
      margin: 0;
      height: 100%;
      background: #000;
      color: #fff;
      font-family: system-ui, sans-serif;
      cursor: none;
      overflow: hidden;
    }
    #stage {
      position: fixed;
      inset: 0;
      display: grid;
      place-items: center;
      background: #000;
    }
    img.media-img {
      width: 100vw;
      height: auto;
      object-fit: contain;
      background: #000;
      display: block;
    }
    video.media-video {
      width: 100vw;
      height: auto;
      max-height: 100vh;
      object-fit: contain;
      background: #000;
      display: block;
    }
    .hidden { display: none !important; }
    .debug {
      position: fixed;
      left: 8px;
      bottom: 8px;
      padding: 4px 8px;
      background: rgba(0,0,0,.5);
      font-size: 12px;
      border-radius: 6px;
    }
