/*!*****************************************************************!*\
  !*** css ../../node_modules/css-loader/dist/cjs.js!./rtree.css ***!
  \*****************************************************************/
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    border: none;
}

.github-btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .45rem .75rem;
    border-radius: 8px;
    background: #111;
    /* GitHub dark */
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
    box-shadow: 0 1px 0 rgba(0, 0, 0, .3);
}

.github-btn svg {
    display: block;
}

.github-btn:focus {
    outline: 3px solid rgba(3, 102, 214, .3);
    outline-offset: 2px;
}

.github-btn:hover {
    transform: translateY(-1px);
}

#root-div {
    height: 100%;
    width: 100%;
    color: white;
    background-color: black;
}

#explain-div {
    position: fixed;
    left: 0px;
    top: 0px;
    z-index: 5;
    height: 100%;
    width: 20%;
    padding: 10px;
    background: rgba(1, 255, 200, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    overflow-y: auto;
    overflow-x: hidden;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

#title-div {}

#panel-div {}

#description-div {}

#control-div {
    display: flex;
    flex-wrap: wrap;
    gap: 10px
}

#graph-div {
    position: fixed;
    height: 100%;
    width: 80%;
    right: 0px;
}

#canvas-div {
    position: fixed;
    right: 0px;
    top: 0px;
    height: 300px;
    width: 300px;
    padding: 10px;
    background-color: rgba(1, 255, 200, 0.1);
    border: 5px solid rgba(1, 255, 200, 0.2);
}

#rtree-canvas {
    height: 300px;
    width: 300px;
}
