.bydn-vm-modal {
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
}

.bydn-vm-modal-content {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  width: 90%;
  max-width: 680px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.bydn-vm-close {
  position: absolute;
  right: 10px;
  top: 8px;
  font-size: 24px;
  cursor: pointer;
}

.bydn-vm-result img {
  max-width: 100%;
  height: auto;
  display: block;
}