body {
    margin: 0;
    overflow: hidden;
    background-color: #000;
    color: #fff;
    font-family: sans-serif;
}

#container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

#info {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    padding: 0.2rem;
    background: rgba(0,0,0,0.5);
    border-radius: 0.5rem;
    z-index: 100;
    color: rgb(101, 101, 101);
    font-size: 12px;
    line-height: 1.4;
    max-width: 320px;
    text-align: right;
}

#info strong {
    font-weight: bold;
    color: #FFF;
}

#dataset-names {
    position: absolute;
    top: 1rem;
    width: 100%;
    text-align: center;
    z-index: 100;
    color: #888;
    font-size: 14px;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    pointer-events: none;
}

#dataset-names span.active {
    font-weight: bold;
    color: white;
} 