.route-editor-virtual .vf-map {
  position: absolute;
  inset: 0;
  background: #162e34;
  outline: none;
}
.route-editor-virtual .vf-canvas,
.route-editor-virtual .vf-map > .map-scene {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
}
.route-editor-virtual .vf-modebar {
  position: absolute;
  z-index: 620;
  top: 62px;
  left: 12px;
  right: 56px;
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  pointer-events: auto;
}
.route-editor-virtual .vf-modebar button,
.route-editor-virtual .vf-preview button,
.route-editor-virtual .vf-retry button {
  border: 1px solid #40515a;
  background: #17242de8;
  color: #e4eef1;
  padding: 6px 8px;
  border-radius: 3px;
  font-size: 12px;
  cursor: pointer;
  min-height: 28px;
}
.route-editor-virtual .vf-modebar button[aria-pressed="true"],
.route-editor-virtual .vf-preview button.primary {
  background: #107959;
  border-color: #2cda9e;
  color: white;
}
.route-editor-virtual .vf-modebar button:disabled,
.route-editor-virtual .vf-preview button:disabled {
  opacity: 0.4;
  cursor: default;
}
.route-editor-virtual .vf-modebar button:focus-visible,
.route-editor-virtual .vf-preview button:focus-visible {
  outline: 2px solid #6fffcd;
  outline-offset: 2px;
}
.route-editor-virtual .vf-map:focus-visible {
  outline: 2px solid #42dca8;
  outline-offset: -2px;
}
.route-editor-virtual .vf-live {
  position: absolute;
  top: 102px;
  left: 12px;
  right: 56px;
  z-index: 610;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 14px;
  align-items: center;
  padding: 9px 12px;
  background: #101d27df;
  border-left: 2px solid #2cdca5;
  font:
    12px/1.5 ui-monospace,
    monospace;
  pointer-events: none;
}
.route-editor-virtual .vf-live b {
  color: #55eab4;
}
.route-editor-virtual .vf-live small {
  width: 100%;
  color: #afc4cc;
}
.route-editor-virtual .vf-keys {
  position: absolute;
  z-index: 610;
  bottom: 2px;
  left: 8px;
  right: 8px;
  color: #c5d7dc;
  background: #15232bcc;
  font-size: 10px;
  padding: 3px 5px;
  pointer-events: none;
}
.route-editor-virtual .vf-loading {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: #14232e;
  z-index: 630;
  color: #bdd4da;
}
.route-editor-virtual .vf-retry {
  position: absolute;
  z-index: 640;
  top: 152px;
  left: 10px;
  right: 55px;
  background: #28383dee;
  padding: 12px;
  display: flex;
  gap: 10px;
  align-items: center;
}
.route-editor-virtual .vf-preview {
  position: relative;
  flex-shrink: 0;
  border-bottom: 1px solid #46515c;
  background: #1a232b;
  padding: 12px;
}
.route-editor-virtual .vf-preview header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 9px;
  font-size: 13px;
}
.route-editor-virtual .vf-preview header span {
  font-size: 10px;
  color: #80d9b9;
  border: 1px solid #377565;
  padding: 2px 6px;
  border-radius: 2px;
}
.route-editor-virtual .vf-preview-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  background: #080e12;
  touch-action: none;
  outline: none;
  overflow: hidden;
}
.route-editor-virtual .vf-preview-frame:focus-visible {
  outline: 2px solid #4cdca9;
}
.route-editor-virtual .vf-preview-canvas {
  position: absolute;
  inset: 0;
}
.route-editor-virtual .vf-crosshair {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font: 24px/1 monospace;
  color: #fff9;
  pointer-events: none;
}
.route-editor-virtual .vf-preview-meta {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: #0c161cc9;
  padding: 5px 8px;
  font:
    11px ui-monospace,
    monospace;
  pointer-events: none;
}
.route-editor-virtual .vf-preview-unavailable {
  position: absolute;
  inset: 0;
  background: #101b24;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 16px;
  color: #b0c1cd;
}
.route-editor-virtual .vf-height-state,
.route-editor-virtual .vf-capability {
  font-size: 10px;
  line-height: 1.5;
  color: #a8b8c6;
  margin: 7px 0;
}
.route-editor-virtual .vf-pose summary {
  font-size: 12px;
  color: #c6d4db;
  padding: 5px 0;
  cursor: pointer;
}
.route-editor-virtual .vf-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin: 6px 0;
}
.route-editor-virtual .vf-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 11px;
  color: #aab9c4;
  min-width: 0;
}
.route-editor-virtual .vf-field input,
.route-editor-virtual .vf-field select {
  width: 100%;
  min-width: 0;
  height: 28px;
  background: #101b23;
  border: 1px solid #3f505f;
  color: #f0f6fa;
  border-radius: 2px;
  padding: 3px 5px;
  font-size: 12px;
  font-variant-numeric: tabular-nums;
}
.route-editor-virtual .vf-small-actions {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
}
.route-editor-virtual .vf-small-actions button {
  font-size: 10px;
  padding: 3px 5px;
}
.route-editor-virtual .vf-commands {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin-top: 10px;
}
.route-editor-virtual .vf-message {
  font-size: 11px;
  line-height: 1.5;
  color: #ffdc91;
  margin: 8px 0 0;
}
.route-editor-virtual .vf-confirm {
  position: sticky;
  bottom: 0;
  z-index: 1500;
  padding: 14px;
  background: #263c4a;
  border: 1px solid #70c9b1;
  box-shadow: 0 4px 20px #0008;
}
.route-editor-virtual .vf-confirm p {
  font-size: 12px;
}
.route-editor-virtual .vf-confirm button {
  margin: 3px;
}
.route-editor-virtual .route-waypoint-inspector {
  overflow-y: auto;
}
.route-editor-virtual .route-waypoint-inspector > .action-panel {
  flex: none;
}
.route-editor-virtual .camera-composition {
  display: none;
}
.route-editor-virtual .vf-map .cesium-viewer-bottom {
  bottom: 22px;
  max-width: 100%;
  font-size: 9px;
}
.route-editor-virtual .vf-preview .cesium-viewer-bottom {
  bottom: 25px;
  font-size: 8px;
}
@media (max-width: 1100px) {
  .route-editor-virtual .vf-modebar {
    right: 45px;
  }
  .route-editor-virtual .vf-live {
    top: 138px;
  }
  .route-editor-virtual .vf-preview {
    padding: 8px;
  }
}
@media (max-width: 640px) {
  .route-editor-virtual .vf-live {
    top: 140px;
  }
  .route-editor-virtual .vf-preview-frame {
    max-width: 380px;
    margin: auto;
  }
}
@media (max-height: 850px), (max-width: 800px) {
  .route-editor-virtual.route-planner-workspace .map-action-palette {
    top: 210px;
    bottom: auto;
    left: 12px;
    right: 56px;
  }
  .route-editor-virtual.route-planner-workspace .map-action-rail {
    flex-direction: row;
    gap: 4px;
    flex-wrap: wrap;
  }
  .route-editor-virtual.route-planner-workspace .map-action-rail > button {
    font-size: 11px;
    min-height: 28px;
    gap: 3px;
    padding-right: 5px;
  }
  .route-editor-virtual.route-planner-workspace .map-action-rail i {
    width: 24px;
    height: 28px;
  }
}
