body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow: hidden; /* Prevents scrollbars */
    font-family: sans-serif;
}

#visualization-container {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    touch-action: none; /* Prevents panning and zooming on touch devices */
}

#d3-canvas {
    width: 100%;
    height: 100%;
}
