body {
    margin: 0;
    padding: 0;
    height: 100vh;
    overflow: hidden;
    font-family: 'Roboto', sans-serif;
}

.col-json,
.col-graph,
.col-details {
    height: 100vh;
    overflow-y: auto;
}

.col-json {
    background: #f8f9fa;
    padding: 15px;
    transition: all 0.3s ease-in-out;
    width: 33.333%;
    max-width: 33.333%;
    display: flex;
    flex-direction: column;
}

.col-json.collapsed {
    width: 0;
    padding: 0;
    max-width: 0;
    overflow: hidden;
}

.json-content-wrapper {
    flex: 1;
    overflow-y: auto;
}

.json-content-wrapper pre {
    height: 100%;
    margin: 0;
}

.col-details {
    background: #f8f9fa;
    padding: 20px;
}

pre {
    margin: 0;
}

.node rect {
    fill: #f8f9fa !important;
    stroke: #007bff !important;
    stroke-width: 2px;
    rx: 5px;
    ry: 5px;
}

.node.locked rect {
    fill: #cce5ff !important;
}

.node text {
    fill: #000 !important;
    font-size: 14px;
    font-weight: bold;
}

.edgePath path {
    stroke: #333 !important;
    stroke-width: 2px;
    fill: none;
}

#node-details {
    background: white;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

#json-content {
    font-size: 12px;
}

.highlight {
    background-color: #ffff99;
}

.accordion-button {
    font-weight: bold;
}

.table {
    font-size: 12px;
    margin-bottom: 0;
}

.table td,
.table th {
    padding: 0.5rem;
}

.table-striped tbody tr:nth-of-type(odd) {
    background-color: rgba(0,0,0,.05);
}

pre.raw-json {
    font-size: 12px;
    margin: 0;
}

.control-panel {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 1000;
    display: flex;
    gap: 5px;
}

.graph-container {
    margin-top: 80px;
    height: calc(100% - 80px);
}

svg {
    width: 100%;
    height: 100%;
    cursor: move;
}

.col-graph {
    position: relative;
}

#help-text {
    margin-bottom: 15px;
}

.hidden {
    display: none; /* Class to hide accordion headers */
}

.graph-container {
    width: 100%;
    height: 80vh; /* Adjust as needed */
    overflow: auto;
}
svg {
    display: block;
}
.node rect {
    fill: #f8f9fa;
    stroke: #dee2e6;
    stroke-width: 1px;
}
.node text {
    font-family: 'Roboto', sans-serif;
    font-size: 12px;
    fill: #212529;
}