html,
body {
    background-color: var(--blue);
}

#sidebar-ganz {
    background-color: transparent;
}

#sidebar-ganz:has(.sidebar.active) {
    background-color: var(--blue);
}

.line-number-0 {
    color: transparent;
}



#canvas-connections {
    position: relative;
    width: 100%;
    height: 100vh;
    background-color: var(--blue);
}



.li-item {
    position: absolute;
    color: var(--white);
    width: 10vw;
    z-index: 1001;
    pointer-events: auto;
    cursor: pointer;
}


ul {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1001;
}

#info-connections {
    position: absolute;
    left: 3%;
    top: 78%; 
}

#info-connections h1 {
   margin-bottom: 0.5vw;
}

#info-connections-2 {
    width: 40vw;
    opacity: 0;
    transition: opacity 0.3s ease;
}

#info-connections-2.visible {
    opacity: 1;
}
