body {
    font-family: -apple-system, sans-serif;
    padding-left: 32px;
    padding-right: 32px;
    max-width: 512px;
    position: relative;
    left: 50%;
    transform: translate(-50%, 0);
}

@media (prefers-color-scheme: dark) {
    body {
        background-color: black;
        color: white;
    }
}

.light {
    opacity: 0.5;
}

.header {
    text-align: center;
    padding-top: 24px;
}

.allNodes {}

.grandParentNodeFamily {
    
}

.grandParentNodeName {
    font-size: 1.2em;
    font-weight: bold;
}

.parentNodeFamily {
    
}

.parentNodeName {
    opacity: 0.5;
}

.nodeGroup {
    display: flex;
    flex-wrap: wrap;
    gap: 4px 4px;
    margin: 8px;
}

.node {
    display: flex;
    align-items: center;
}

.imageStack {
    position: relative;
    display: inline-block;
}
.imageStack img {
    position: absolute;
    top: 0;
    left: 0;
}

.imageLight {
    opacity: 1;
    transition: opacity 0.3s ease;
}
.imageDark {
    opacity: 0;
    transition: opacity 0.3s ease;
}
@media (prefers-color-scheme: dark) {
    .imageLight {
        opacity: 0;
    }
    .imageDark {
        opacity: 1;
    }
}

a,
a:link {
    color: black;
    text-decoration: none;
}
a:visited {
    color: rgba(0, 0, 0, 0.75);
}
a:hover,
a:focus {
    color: rgba(0, 0, 0, 0.75);
}
a:active {
    color: rgba(0, 0, 0, 0.5);
}
@media (prefers-color-scheme: dark) {
    a,
    a:link {
        color: white;
    }
    a:visited {
        color: rgba(255, 255, 255, 0.75);
    }
    a:hover,
    a:focus {
        color: rgba(255, 255, 255, 0.75);
    }
    a:active {
        color: rgba(255, 255, 255, 0.5);
    }
}

.assetImage {
    border-radius: 8px;
}

.back {
    display: flex;
    align-items: center;
    gap: 4px;
}

.footer {
    text-align: center;
    padding: 32px;
}

