 .container {
    position: absolute;
    width: 100px;
    height: 20px;
  }
  .line {
    position: absolute;
    top: 0%;
    left: 0;
    width: 100px;
    height: 1px;
    background-color: black;
  }
  .mswitch {
    position: absolute;
    top: -77%;
    left: 20%;
    width: 60px;
    height: 20px;
    background-color: white;
  }
  .rectangle {
    position: absolute;
    top: -50%;
    left: 20%; /* Adjust to center the rectangle */
    width: 60px;
    height: 20px;
    background-color: white;
    border: 1px solid black;
    text-align: center;
    line-height: 20px;
  }
  .circle {
    position: absolute;
    top: -100%;
    left: 30%; /* Adjust to center the circle */
    width: 40px;
    height: 40px;
    background-color: white;
    border: 1px solid black;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
  }
  
  .vertical .container {
    transform: rotate(-90deg);
  }
  .vertical .line {
    top: 0;
    left: 0%;
    width: 1px;
    height: 100px;
  }
  .vertical .rectangle {
    top: 50px;
    left: 0px;
    transform: translate(-50%, -50%) rotate(90deg); /* Rotate the rectangle by -90 degrees */
  }
  .vertical .circle {
    top: 50px;
    left: 0px;
    transform: translate(-50%, -50%) rotate(90deg); /* Rotate the circle by 90 degrees */
  }
  .label {
    position: absolute;
    font-size: 16px;
  }
  .vertical .plus {
    top: 10px;
    left: 10px;
  }
  .vertical .plus .reverse {
    top: 60px;
    left: 10px;
  }
  .horizontal .plus {
    top: -50px;
    left: 20px;
  }
  .horizontal .plus .reverse {
    top: 150px;
    left: 20px;
    transform: translateY(-50%);
  }
  
  .triangle {
    width: 0;
    height: 0;
    border-left: 10px solid transparent; /* Half the width of the triangle */
    border-right: 10px solid transparent; /* Half the width of the triangle */
    border-top: 20px solid red; /* Height of the triangle */
    position: absolute;
    top: 0px; /* Adjust the vertical position */
    left: 0px; /* Adjust the horizontal position */
	}
	
.nodecirc {
    width: 20px;
    height: 20px;
	background-color: rgba(200, 200, 200, 1); /* 20% opacity black */
	border: 1px solid black; /* Black border */
    border-radius: 50%;
    position: relative;
}

.smallnodecirc {
    width: 8px;
    height: 8px;
	background-color: rgba(0, 0, 0, 1); /* 20% opacity black */
	border: 1px solid black; /* Black border */
    border-radius: 50%;
    position: relative;
}

.mytext {
    width: 20px;
    height: 20px;000
    position: absolute;
}

  .draggable {
    width: 150px;
    height: 150px;
    position: absolute;
    cursor: pointer;
  }
  #droppable {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: red;
    position: absolute;
    left: 50%; /* Center the circle horizontally */
    top: 50%; /* Center the circle vertically */
    transform: translate(-50%, -50%); /* Adjust to center the circle properly */
  }
  .voltMeter {
    width: 180px;
    height: 300px;
    background-color: rgb(0,0,0,0);
    position: absolute;
    left: 80px;
    top: 290px;  
  }
  .nitzMeter {
    width: 150px;
    height: 342px;
    background-color: rgb(0,0,0,0);
    position: absolute;
    left: 80px;
    top: 290px;  
  }

/* CSS for centering and toggling the image */
#centerImageContainer {

    width: 476px;
    height: 175px;
    position: absolute;
    background-color: transparent;
    border: none;
    box-shadow: none;
    left: 530px;
    top: 470px; 
}

#centerImageContainer img {
//    width: 80%; /* Make the image fill the container */
    height: auto;
    border: none;
    box-shadow: none;
}

/* CSS for centering and toggling the image */
#meterImageContainer {

    width: 180px;
    position: absolute;
    background-color: transparent;
    border: none;
    box-shadow: none;
    left: 50px;
    top: 330px; 
}

#meterImageContainer img {
    height: auto;
    border: none;
    box-shadow: none;
}