.bg-background {
    background-color: var(--color-background);
}

/* Image Time Caliper Styles */
.image-time-caliper {
  position: relative;
  display: inline-block;
  cursor: crosshair;
}

.image-time-caliper img {
  display: block;
  user-select: none;
}

.image-time-caliper .line {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  pointer-events: none;
  z-index: 1;
}

.image-time-caliper .hover-line {
  background: repeating-linear-gradient(
    to bottom,
    #000 0px,
    #000 10px,
    #fff 10px,
    #fff 15px
  );
  display: none;
  width: 1px;
  opacity: 0.5;
}

.image-time-caliper .caliper-start {
  background: repeating-linear-gradient(
    to bottom,
    #000 0px,
    #000 10px,
    #fff 10px,
    #fff 15px
  );
  display: none;
  width: 1px;
}

.image-time-caliper .caliper-end {
  background: repeating-linear-gradient(
    to bottom,
    #000 0px,
    #000 10px,
    #fff 10px,
    #fff 15px
  );
  display: none;
  width: 1px;
}

.image-time-caliper .measurement-container {
  position: absolute;
  pointer-events: none;
  z-index: 3;
  height: 40px;
}

.image-time-caliper .measurement-svg {
  position: absolute;
  height: 50px;
  top: 0;
  left: 0;
}

.image-time-caliper .measurement-label {
  position: absolute;
  bottom: 1px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  padding: 0;
  font-family: ui-monospace, SFMono-Regular, "SF Mono", Consolas, "Liberation Mono", Menlo, monospace;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  line-height: 1.2;
}