body,#root,#main {
    margin: 0px;
    padding: 0px;
    height: 100vh;
}

body {
    background-color: #181818;
}

* {
    color: #ddd;
}

#main {
    overflow: auto;
    padding: 2vw;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

table {
    border-spacing: 0;
    border-bottom: 0 !important;
    border-left: 0 !important;
}

table, th, td {
    border: 1px solid #555;
}

th {
    cursor: pointer;
    background-color: #282828;
}

td, th {
    padding: 4px;
    padding-left: 8px;
    padding-right: 8px;
    min-width: 8vw;

    border-top: 0;
    border-right: 0;
}

p {
    margin-top: 8px;
    margin-bottom: 8px;
}

#content > p {
    text-align: center;
}

#content > table {
    margin-top: 8px;
}

#input-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

#input-file {
    display: none;
}

#input-button {
    color: #282828;
}

#status {
    color: #aaa;
}

#grow-vertical {
    flex-grow: 1;
    min-height: 10px;
}

.footer-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.footer-row * {
    color: #aaa;
}

.vertical-separator {
    height: calc(100% - 16px);
    width: 1px;
    border-left: 1px solid #555;
}

a:hover {
    opacity: 0.8;
}