.imap-hotspot-editor {
  margin: .75rem 0 1rem;
  border: 1px solid #d6d6d6;
  background: #fff;
  padding: 1rem;
}
.imap-editor-help {
  margin: 0 0 .75rem;
}
.imap-editor-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 340px);
  gap: 1rem;
  align-items: start;
}
.imap-editor-canvas {
  position: relative;
  display: inline-block;
  width: auto;
  max-width: min(100%, 920px);
  cursor: crosshair;
  border: 1px solid #ccc;
  line-height: 0;
  background: #f6f6f6;
  overflow: hidden;
}
.imap-editor-image {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 65vh;
  height: auto;
  object-fit: contain;
}
.imap-editor-layer {
  position: absolute;
  inset: 0;
}
.imap-editor-marker {
  position: absolute;
  transform: translate(-50%, -50%);
  border: .15rem solid rgba(255,255,255,.95);
  background: rgba(0, 90, 156, .2);
  box-shadow: 0 0 0 .12rem rgba(0,0,0,.55), 0 .2rem .6rem rgba(0,0,0,.35);
  cursor: move;
  padding: 0;
  min-width: 1rem;
  min-height: 1rem;
  box-sizing: border-box;
  touch-action: none;
}
.imap-editor-marker.is-selected {
  background: rgba(0, 90, 156, .38);
  outline: .22rem solid rgba(0, 90, 156, .95);
  outline-offset: .08rem;
}
.imap-editor-panel {
  border: 1px solid #ddd;
  padding: .75rem;
  background: #f8f8f8;
}
.imap-editor-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  margin-bottom: .75rem;
}
.imap-editor-list {
  display: grid;
  gap: .35rem;
  margin-bottom: .75rem;
}
.imap-editor-list-item {
  display: block;
  width: 100%;
  text-align: left;
  border: 1px solid #ccc;
  background: #fff;
  padding: .45rem .55rem;
}
.imap-editor-list-item span {
  display: block;
  font-size: .9em;
  color: #555;
}
.imap-editor-list-item.is-selected {
  border-color: #005a9c;
  box-shadow: inset .25rem 0 0 #005a9c;
}
.imap-editor-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .55rem;
}
.imap-editor-field span {
  display: block;
  font-weight: 600;
  margin-bottom: .2rem;
}
.imap-editor-field input {
  width: 100%;
  box-sizing: border-box;
}
.imap-editor-empty,
.imap-editor-status {
  color: #555;
}
.imap-editor-status {
  margin: .75rem 0 0;
  min-height: 1.2em;
}
@media (max-width: 900px) {
  .imap-editor-layout {
    grid-template-columns: 1fr;
  }
  .imap-editor-canvas {
    max-width: 100%;
  }
}
