.textLabel {
  background-color: #009bff; /* Delicious orange-red */
  color: #ffffff; /* White text for contrast */
  font-family: 'Arial', sans-serif; /* Choose a font you like */
  font-size: 16px; /* Adjust the font size as needed */
  padding: 2px 4px;
  border-radius: 8px; /* Rounded corners for a nice look */
  box-shadow: 0px 1px 3px 1px rgba(0, 0, 0, 0.25);
  text-align: center;
  line-height: 1.2;
  white-space: nowrap;
  left: 0px;
  top: 0px;
}
.lengthLabel {
  background-color: #009bff; /* Delicious orange-red */
  color: #ffffff; /* White text for contrast */
  font-family: 'Arial', sans-serif; /* Choose a font you like */
  font-size: 16px; /* Adjust the font size as needed */
  padding: 2px 4px;
  border-radius: 8px; /* Rounded corners for a nice look */
  box-shadow: 0px 1px 3px 1px rgba(0, 0, 0, 0.25);
  text-align: center;
  line-height: 1.2;
  white-space: nowrap;
  left: 0px;
  top: -20px;
}
.measurementLabel {
  background-color: #009bff; /* Delicious orange-red */
  color: #ffffff; /* White text for contrast */
  font-family: 'Arial', sans-serif; /* Choose a font you like */
  font-size: 16px; /* Adjust the font size as needed */
  padding: 2px 4px;
  border-radius: 8px; /* Rounded corners for a nice look */
  box-shadow: 0px 1px 3px 1px rgba(0, 0, 0, 0.25);
  text-align: center;
  line-height: 1.2;
  white-space: nowrap;
  left: 0px;
  top: -20px;
  cursor: pointer;
}

.vertexSphere {
  display: inline-block;
  position: absolute;
  width: 7px;
  height: 7px;
  left: -2px;
  top: -2px;
  background-color: #009bff;
  border-style: solid;
  border-width: 2px;
  border-color: #FFFFFF;
  border-radius: 100px;
  box-shadow: 0 2px 5px 0 #182A3D;
  z-index: 1;
  cursor: move;
  pointer-events: none;
}
.vertexSphere.selected {
  border-color: rgb(0, 255, 0);
}
.manipulatorBar {
  display: inline-block;
  width: 10px;
  height: 10px;
  left: 0px;
  top: 0px;
  background-color: #c5c353;
  border-style: solid;
  border-width: 2px;
  border-radius: 8px;
  border-color: #FFFFFF;
  box-shadow: 0 2px 5px 0 #182A3D;
  z-index: 1;
  cursor: move;
  pointer-events: none;
}
.manipulatorWrapper {
  display: inline-block;
  position: absolute;
  left: 0px;
  top: 0px;
  z-index: 1;
  cursor: move;
  pointer-events: none;
}
.manipulatorBar.selected {
  border-color: rgb(0, 255, 0);
}