/* Watermark.css */
.watermark-container {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-123%, -155%);
    pointer-events: none; /* Allow clicks to pass through the watermark */
    opacity: 0.1; /* Adjust opacity as needed */
    z-index: 1000;
    width: 25%;
  }
  
  .watermark-text {
    font-size: 24px; /* Adjust font size as needed */
    color: #000; /* Adjust text color as needed */
    /* Add any other styles you want */
  }

  /* .watermark-container { */
    /* ... */
    /* z-index: 1000; Adjust the value based on your layout needs */
  /* } */
  
  