
        svg {
            display: block; /* Ensures it takes up the full container width */
            margin: 0 auto; /* Centers it horizontally */
            border: 1px solid white;
        }
        #d3-visualization {
            display: flex;
            justify-content: center;
            align-items: center;
            height: auto !important;
            margin: 0;
            position: relative;
            border: 1px solid white;
        }
        .MISQlabel {
            font-family: 'Arial', sans-serif;
            font-size: 12px;
        }
        .MISQtooltip {
            position: absolute;
            padding: 5px;
            background: rgba(255, 255, 255, 0.95); /* White background with 95% opacity */
            color: #000; /* Black text color */
            border: 1px solid #000; /* Thick black border */
            border-radius: 3px; /* Optional: Rounded corners */
            pointer-events: none;
            font-size: 12px;
            max-width: 200px; /* Limit tooltip width */
            word-wrap: break-word; /* Ensure long text wraps */
            line-height: 1.4; /* Add spacing between lines */
            white-space: normal; /* Allow line breaks */
            box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.2);
        }
    