body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    text-align: center;
    background-color: #f7f7f7;

}

.container {
    position: relative;
    width: 100%;
    height: 100%;
}

.overlay {
    position: absolute;
    top: 80px;
    right: 30px;
    background-color: rgba(163, 26, 26, 0.8);
    padding: 10px;
    border: 1px solid #000;
    z-index: 0;
    max-width:200px;
}
.info{
    position: absolute;
    top: 80px;
    left: 30px;
    background-color: rgba(163, 26, 26, 0.8);
    padding: 10px;
    border: 1px solid #000;
    max-width: 250px;
}

.title-container {
    width: 100%;
    padding: 5px 0;
    background-color: #333;
}

.title-container h2 {
    margin: 0;
    color: #fff;
    font-size: 2em;
}

#graphviz {
    width: 100%;
    height: 80vh;
    border-top: 1px solid #eee;
}
#theSVG{
    width: 100%;
    height: 1200px;
}

