.def {
    color: purple;
    text-decoration: underline;
    cursor: pointer;
}

.tooltip-def {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.95);
    white-space : pre-line;
    background: #333;
    color: white;
    padding: 15px;
    border-radius: 10px;

    max-width: 400px;
    width: 90%;
	max-height: 70vh;
overflow-y: auto;
    z-index: 99999;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);

    opacity: 0;
    transition: all 0.2s ease;
}

.tooltip-def.show {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.tooltip-def img {
    width: 100%;
    border-radius: 6px;
    margin-bottom: 8px;
}

.overlay-def {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 99998;
	
	
}
#overlay {
    position: fixed;
    inset: 0;
    display: none;
  
    z-index: 1000;
	align-items:center;
	justify-content: center;
}
.tooltip-content {
 text-align:justify;
 line-height:1.1;
 max-height :60vh;
 
 margin-top:2px;
 
 }