.vm-root {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  color: #fff;
  background: #111727;
  border-radius: 16px;
}
.vm-title {
  text-align: center;
  margin-bottom: 16px;
}

.vm-video-wrapper {
  position: relative;
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
}

#vm-video,
#vm-canvas {
  width: 100%;
  display: block;
}

#vm-video {
  transform: scaleX(-1);
}

#vm-canvas {
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
}

.vm-controls {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin: 16px 0;
}

.vm-btn {
  padding: 10px 20px;
  background: #ff9950;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

.vm-btn-secondary {
  background: #303550;
  color: #fff;
}

.vm-slider-label {
  color: #ccc;
  display: flex;
  align-items: center;
  gap: 8px;
}

.vm-status {
  text-align: center;
  margin-top: 10px;
}

