.space-map-page {
  min-height: calc(100dvh - var(--ref-commandbar-height, 44px));
  padding: 10px;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  gap: 10px;
}
.space-map-header {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 14px;
  border: 1px solid rgba(94, 203, 255, .16);
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(8, 22, 38, .96), rgba(4, 13, 24, .9));
}
.space-map-header h1 { margin: 2px 0 0; font-size: 22px; }
.space-map-header p { margin: 3px 0 0; color: #91a7ba; font-size: 12px; }
.space-map-actions { display: flex; align-items: center; gap: 8px; }
.space-map-frame-shell {
  position: relative;
  min-height: 600px;
  overflow: hidden;
  border: 1px solid rgba(94, 203, 255, .18);
  border-radius: 14px;
  background: #020915;
  box-shadow: inset 0 0 60px rgba(24, 118, 177, .07), 0 18px 42px rgba(0, 0, 0, .24);
}
.space-map-frame-shell::before {
  content: "Sternkarte wird initialisiert …";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #7893aa;
  font-size: 13px;
  letter-spacing: .05em;
}
.space-map-frame {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  min-height: 600px;
  display: block;
  border: 0;
  background: #020915;
}
.space-map-note { color: #6f879b; font-size: 11px; }
@media (max-width: 1000px) {
  .space-map-page { padding: 7px; }
  .space-map-header { align-items: flex-start; }
  .space-map-actions { flex-wrap: wrap; justify-content: flex-end; }
  .space-map-frame-shell, .space-map-frame { min-height: 520px; }
}
