body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: black;
  color: white;
  overflow: hidden;
}

#globeViz {
  width: 100vw;
  height: 100vh;
}

#infoBox {
  position: absolute;
  bottom: 20px;
  left: 20px;
  width: 300px;
  background: rgba(0,0,0,0.85);
  padding: 16px;
  border-radius: 12px;
  backdrop-filter: blur(10px);
}

#treeImage {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 10px;
}

#treeName {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 6px;
}

#treeMeta {
  font-size: 13px;
  color: #ccc;
  margin-bottom: 8px;
}

#treeDescription {
  font-size: 14px;
  line-height: 1.4;
  margin-bottom: 10px;
}

.linkBtn {
  color: #4CAF50;
  text-decoration: none;
  font-size: 14px;
}

.linkBtn:hover {
  text-decoration: underline;
}

#streetViewContainer {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 400px;
  height: 300px;
  background: black;
  border-radius: 12px;
  overflow: hidden;
}

#streetViewFrame {
  width: 100%;
  height: 100%;
  border: none;
}