.standard-sky-map {
  color: #eef3ff;
  background: #080914;
  min-height: calc(100vh - 130px);
  padding: 12px;
  box-sizing: border-box;
}

.standard-sky-map__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  max-width: 1100px;
  margin: 0 auto 10px;
}

.standard-sky-map__bar h1 {
  color: #eef3ff;
  font-size: 24px;
  line-height: 1.1;
  margin: 0;
  font-weight: 700;
}

.standard-sky-map__modes {
  display: inline-flex;
  border: 1px solid #41506e;
  border-radius: 6px;
  overflow: hidden;
  flex: 0 0 auto;
}

.standard-sky-map__mode,
.standard-sky-map__tools button {
  color: #eef3ff;
  background: #151a2a;
  border: 0;
  min-height: 38px;
  cursor: pointer;
}

.standard-sky-map__mode {
  padding: 0 12px;
  border-right: 1px solid #41506e;
}

.standard-sky-map__mode:last-child {
  border-right: 0;
}

.standard-sky-map__mode.is-active,
.standard-sky-map__tools button:hover {
  background: #2a5f83;
}

.standard-sky-map__stage {
  position: relative;
  width: min(100%, 1100px);
  height: min(76vh, 760px);
  min-height: 430px;
  margin: 0 auto;
  border: 1px solid #303a53;
  border-radius: 8px;
  overflow: hidden;
  background: #02030a;
  touch-action: none;
}

.standard-sky-map__canvas {
  display: block;
  width: 100%;
  height: 100%;
}

.standard-sky-map__tools {
  position: absolute;
  right: 10px;
  top: 10px;
  display: grid;
  grid-template-columns: 40px;
  gap: 6px;
}

.standard-sky-map__tools button {
  width: 40px;
  border: 1px solid #41506e;
  border-radius: 6px;
  font-size: 20px;
}

.standard-sky-map__status {
  position: absolute;
  left: 10px;
  bottom: 10px;
  max-width: calc(100% - 20px);
  color: #dce6ff;
  background: rgba(8, 10, 20, .82);
  border: 1px solid rgba(160, 180, 220, .32);
  border-radius: 6px;
  padding: 7px 9px;
  font-size: 13px;
  box-sizing: border-box;
}

.standard-sky-map__panel {
  max-width: 1100px;
  margin: 10px auto 0;
  border: 1px solid #303a53;
  border-radius: 8px;
  background: #111625;
  padding: 10px 12px;
  box-sizing: border-box;
}

.standard-sky-map__panel-title {
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 4px;
}

.standard-sky-map__panel-body {
  color: #cbd6ef;
  font-size: 14px;
}

@media (max-width: 640px) {
  .standard-sky-map {
    padding: 8px;
  }

  .standard-sky-map__bar {
    align-items: stretch;
    flex-direction: column;
  }

  .standard-sky-map__modes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }

  .standard-sky-map__mode {
    padding: 0 8px;
  }

  .standard-sky-map__stage {
    height: 68vh;
    min-height: 360px;
  }
}
