.cadViewerAnnotationLabel {
  width: 35px;
  height: 35px;
  font-size: 15px;
  padding: 0.1vw;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #0000007d;
  color: #fff;
  border: 2px solid #fff;
  margin-bottom: 1vw;
  cursor: pointer;
}

.cadViewerAnnotationDescription {
  color: #ffffff;
  font-family: "Inter", sans-serif;
  pointer-events: none;
  font-size: 14px;
  position: absolute;
  left: 45px;
  top: -5px;
  padding: 12px 16px;
  min-width: 150px;
  max-width: 300px;
  background: rgb(0 0 0 / 60%);
  border-radius: 5px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;

  white-space: pre-wrap;
  word-wrap: break-word;
  overflow-wrap: break-word;
  line-height: 1.4;

  &::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 13px;
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-right: 8px solid rgb(0 0 0 / 60%);
  }
}

.cadViewerMeasurementLabel {
  width: 11px;
  height: 11px;
  background-color: #009bea;
  border-style: solid;
  border-width: 2px;
  border-color: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 5px 0 #182a3d;
}

.cadViewerMeasurementDistance {
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  pointer-events: none;
  white-space: nowrap;
}