#planetsView.tab-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.planets-container {
  flex: 1;
  width: 100%;
  min-height: 400px;
  position: relative;
  overflow: hidden;
}

.planets-container canvas {
  display: block;
  width: 100% !important;
  height: 100% !important;
  touch-action: none;
}

/* Planet labels (spacekit creates .spacekit__object-label) */
.planets-container .spacekit__object-label {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  padding: 4px 8px;
  border-radius: 6px;
  pointer-events: none;
  white-space: nowrap;
}

.dark-mode .planets-container .spacekit__object-label {
  color: #f3f4f6;
  background-color: rgba(0, 0, 0, 0.7);
}
