.info {
    padding: 6px 8px;
    font: 14px/16px Arial, Helvetica, sans-serif;
    background: white;
    background: rgba(255,255,255,0.8);
    box-shadow: 0 0 15px rgba(0,0,0,0.2);
    border-radius: 5px;
}
.info h4 {
    margin: 0 0 5px;
    color: #777;
}

#overlay-div {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 0, 0, 0.7); /* Semi-transparent black background */
  z-index: 9999; /* Ensure it's 1  on top */
  display: none; /* Initially hidden */
  text-align: center;
cursor: default;
}
/*popup on visainfo page to show Notes*/
.note1-tooltip {
    position: relative;
    cursor: pointer;
}

.note1-tooltip:hover::after {
    content: attr(data-title);
    position: absolute;
    top: 120%; /* Adjust the position as needed */
    left: 0;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 8px;
    border-radius: 4px;
    white-space: pre-wrap;
    z-index: 1000;
    display: block;
    min-width: 200px; /* Optional: Control tooltip width */
}

.note1-tooltip:hover {
    z-index: 100;
}
/*end popup on visainfo page to show Notes*/
