/* Justify all text within the content area */
.md-content {
    text-align: justify;
}
/* Prevent image dragging */
img {
    pointer-events: none;
    user-drag: none; /* Prevent image dragging */
    -webkit-user-drag: none; /* For Safari */
  }
  
  /* Overlay transparent div on images */
  img {
    position: relative;
  }
  
  img::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0);
    z-index: 10; /* Overlay the image */
  }
  