#NGP-info {
    position: absolute;
    top: 16px;
    left: 60px;
    border-radius: 15px;
    background-color: #FFFFFF;
    padding: 4px;
    box-shadow:0 4px 6px 0 rgba(0, 0, 0, 0.2) ;
    width: 200px;
    z-index: 999;
}
/* Hide icon by default (desktop) */
#NGP-info .material-symbols-outlined {
display: none;
}

/* Mobile style: collapsed into a round button */
@media (max-width: 850px) {
#NGP-info {
top: auto;
bottom: 65px;
left: 15px;
width: 40px;
height: 40px;
border-radius: 50%;
overflow: hidden;
cursor: pointer;
padding: 0;
display: flex;
align-items: center;
justify-content: center;
}

/* Hide text by default on mobile collapsed */
#NGP-info .info-text {
display: none;
}

/* Show icon when collapsed */
#NGP-info .material-symbols-outlined {
display: block;
font-size: 22px;
}

/* Expanded state */
#NGP-info.expanded {
width: 220px;
height: auto;
border-radius: 15px;
padding: 8px;
display: block; /* Reset flex so text displays normally */
}

#NGP-info.expanded .info-text {
display: block;
}

#NGP-info.expanded .material-symbols-outlined {
display: none;
}
}