#streetview-gallery {
  width: 100%;
  height: 80vh;
  border-radius: 10px;
  overflow: hidden;
}

#streetview-thumbs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
}

#streetview-thumbs img {
  width: 100px;
  height: 60px;
  object-fit: cover;
  border-radius: 6px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border 0.2s;
}

#streetview-thumbs img:hover {
  border: 2px solid #fff;
}
