#info-overlay{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 8999;
}

.overlay-content {
    background: #f1f1f1;
    padding: 20px;
    border-radius: 5px;
    position: relative;
    width: calc(100% - 30px); 
    height: calc(100% - 30px); 
}