
 /*
 * Copyright (c) 2024 Biovisuals Private Limited
 * All rights reserved.
 *
 * This software is the confidential and proprietary information of Biovisuals Private Limited.
 * You shall not disclose such Confidential Information and shall use it only
 * in accordance with the terms of the license agreement you entered into with Biovisuals Private Limited.
 */
.svg-canvas-container {
  position: absolute;
  top: 30px;
  left: 0px;
  right: 0;
  bottom: 0;
  overflow: auto;
  touch-action: none;
  -webkit-user-select: none;
  user-select: none;
}

#active-canvas {
  display: block;
  border: 1px dashed #bbb;
  background-color: #f4f4f4 !important;  /* NEW: light canvas base */
}


.canvas-wrapper {
  display: inline-block;
  padding: 20px; /* ✅ True inner padding visible on all sides */
   justify-content: center;
   position: relative;
   transition: opacity 0.3s ease-in-out;
}


.upper-canvas {
  touch-action: pan-x pan-y !important;
  pointer-events: auto !important;
  user-select: none;
}




/*  checkBoundaryWarning  */

/* @keyframes workarea-flash {
	0%   { stroke: #ff6a00; stroke-width: 1px; }
	50%  { stroke: #ff6a00; stroke-width: 4px; }
	100% { stroke: #ff6a00; stroke-width: 1px; }
} */

/* .workarea-glow {
	stroke: #ff6a00 !important;        
	stroke-width: 3px !important;
	stroke-dasharray: none !important; 
	animation: workarea-flash 0.8s ease-in-out;
} */
