body {
  margin: 0;
  overflow: hidden;
  font-family: Arial, sans-serif;
  background-color: #000;
}
#info {
  position: absolute;
  top: 10px;
  left: 10px;
  color: white;
  font-size: 16px;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 10px;
  border-radius: 5px;
}
#planetInfo {
  position: absolute;
  bottom: 10px;
  left: 10px;
  color: white;
  font-size: 14px;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 10px;
  border-radius: 5px;
  max-height: 200px;
  overflow-y: auto;
  min-width: 300px;
}
#scaleInfo {
  position: absolute;
  top: 10px;
  right: 10px;
  color: white;
  font-size: 14px;
  background-color: rgba(0, 0, 0, 0.7);
  padding: 10px;
  border-radius: 5px;
}
#loading {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 24px;
  text-align: center;
}
.selected {
  border: 2px solid #ffff00;
}
.controls-info {
  position: absolute;
  bottom: 10px;
  right: 10px;
  color: white;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 10px;
  border-radius: 5px;
}

/* New styles for enhanced planet info */
.planet-detail-panel {
  padding: 10px;
}

.planet-detail-panel h2 {
  margin: 0 0 10px 0;
  text-align: center;
  color: #ffff00;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  padding-bottom: 5px;
}

.planet-stats {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.stat-row {
  display: flex;
  justify-content: space-between;
}

.stat-label {
  font-weight: bold;
  color: #aaddff;
}

.stat-value {
  color: #ffffff;
}

.planet-description {
  margin-top: 10px;
  font-style: italic;
  color: #aaaaaa;
  text-align: center;
}

/* Notification */
.notification {
  position: fixed;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 14px;
  transition: opacity 0.5s;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.3);
}