.sat-map-mode {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  padding: 10px 14px;
  background: rgba(0, 0, 0, 0.46);
  border-bottom: 1px solid rgba(255, 208, 0, 0.2);
}

.sat-map-mode__buttons {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  width: min(100%, 420px);
}

.sat-map-mode__button {
  min-height: 34px;
  padding: 5px 10px;
  color: #fff;
  font-size: 0.88rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
}

.sat-map-mode__button[aria-pressed='true'] {
  color: #111;
  background: #ffd000;
  border-color: #ffd000;
  box-shadow: 0 0 14px rgba(255, 208, 0, 0.3);
}

#satGlobe {
  display: none;
  width: 100%;
  height: 560px;
  background:
    radial-gradient(circle at center, rgba(21, 50, 69, 0.9), #020407 72%);
}

.sat-map-card.is-3d #satMap {
  display: none;
}

.sat-map-card.is-3d #satGlobe {
  display: block;
}

.sat-live-dashboard #satGlobe {
  flex: 1;
  min-height: 360px;
  height: 100% !important;
}

.sat-globe-marker {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  font-size: 27px;
  line-height: 1;
  background: rgba(3, 7, 5, 0.78);
  border: 1px solid rgba(255, 208, 0, 0.7);
  border-radius: 50%;
  box-shadow: 0 0 18px rgba(255, 208, 0, 0.55);
  cursor: pointer;
  user-select: none;
}

.sat-globe-marker--monkey {
  width: 34px;
  height: 34px;
  font-size: 24px;
  border-color: rgba(102, 255, 136, 0.8);
  box-shadow: 0 0 16px rgba(102, 255, 136, 0.5);
}

.sat-map-mode__status {
  display: none;
}

@media (max-width: 900px) {
  #satGlobe {
    height: 430px;
  }

  .sat-live-dashboard #satGlobe {
    height: 430px !important;
  }

  .sat-map-mode {
    align-items: stretch;
    flex-direction: column;
  }

  .sat-map-mode__buttons {
    width: 100%;
  }
}
