body {
    margin: 0;
    overflow: hidden;
}

#thread-poster {
    position: absolute;
    color: var(--poster-name-color);
    border-bottom: var(--post-section-separator);
    border-right: var(--post-section-separator);
    font-size: 0.8rem;

    top: 0;
    left: 0;
}

#thread-page {
    position: fixed;
}

#thread-graph-section {
    width: 100vw;
    height: 100vh;

    display: grid;
    place-items: center;
}

#loading-message {
    position: absolute;
    background-color: var(--bgcolor-post-node-bg);
    color: var(--text-color);
    padding: 5px 10px;
}

#thread-graph {
    width: 100%;
    height: 100%;
    padding: 0;
    background-color: var(--bgcolor-graph-bg);
}

#image-fullsize-header {
    display: flex;
    justify-content: space-between;
    border-bottom: 2px black solid;
    padding-bottom: 4px;
}

video#image-fullsize {
    max-width: 100%;
}

#image-fullsize-holder {
    margin: 4px 0;
    max-height: 80vh;
    max-width: 80vw;
    overflow: auto;
}

#image-id-number {
    font-weight: bold;
}

#image-name-display, #image-hash-display {
    text-align: center;
}

.cy-node {
    background-color: var(--bgcolor-post-node-bg);
    border: 1px solid #b7c5d9;
    border-top: none;
    border-left: none;

    width: max-content;
    max-width: 960px;

    margin: 0;
    font-size: 10pt;
    font-family: Arial, Helvetica, sans-serif;
    color: #000;

    white-space: pre-line;

    text-align: left;
}