body {
    background-color: #333;
    color: #eee;
}

.banner {
    width: 664px;
    margin: 0 auto;
    text-align: center;
}

#error-log {
    font-size: medium;
    font-weight: bold;
    color: red;
}

input,
button {
    background: #555;
    color: #ccc;
    border: 1px solid #555;
    padding: 5px;
    margin: 3px;
}

button {
    cursor: pointer;
}

button:hover,
input:hover {
    background: #666;
    border: 1px solid #666;
}

table {
    margin: 0 auto;
    border-collapse: collapse;
    border-spacing: 0;
    user-select: none;
    text-align: center;
}

th,
td {
    color: #000;
    font-weight: bold;
    min-width: 80px;
    max-width: 80px;
    height: 30px;
    padding: 0;
    border: 1px solid darkgray;
}

tbody {
    position: relative;
}

tbody th {
    vertical-align: top;
}

thead *,
tbody th {
    outline: .5px solid darkgray;
    background-color: #00aacc;
}

.table-wrapper {
    position: relative;
    width: fit-content;
    margin: 0 auto;
}

.table-overlay {
    position: absolute;
    left: 0;
    top: 32px;
    width: 100%;
    height: calc(100% - 32px);
}

.table-overlay.object {
    overflow: hidden;
    width: calc(100% - 81px);
    left: 81px;
    z-index: 1;
}

.table-object {
    position: absolute;
    top: 0;
    left: 0;
    width: 78px;
    padding: 1px;
    word-break: break-all;
    overflow: hidden;
    transition: all 0.5s linear;
}

.table-overlay.line {
    z-index: 2;
}

#line {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 2px;
    background: red;
    transition: top 0.5s linear;
}

#line-time {
    position: absolute;
    top: -18px;
    left: 0;
    margin: 0;
    background-color: #aa000055;
    font-weight: bold;
    color: #ff0000dd;
}
