#fuji-editor-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 99999;
}

#fuji-editor-modal .fuji-modal {
  width: min(92vw, 980px);
  height: min(86vh, 700px);
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr auto;
}

#fuji-editor-modal .fuji-head,
#fuji-editor-modal .fuji-foot {
  padding: 12px 16px;
  border-bottom: 1px solid #eee;
}
#fuji-editor-modal .fuji-foot { border-top: 1px solid #eee; border-bottom: 0; display:flex; gap:10px; justify-content: flex-end; }

#fuji-stage-wrap { width: 100%; height: 100%; background:#f7f7f7; }

.fuji-btn { padding: 8px 12px; border: 1px solid #ddd; border-radius: 8px; background:#fff; cursor:pointer; }
.fuji-btn.primary { background:#1e5eff; border-color:#1e5eff; color:#fff; }
