@import url("https://fonts.googleapis.com/css2?family=Victor+Mono:wght@300;700&display=swap");

body,
p,button {
    color: white;
    font-family: "Iosevka", monospace;
    font-weight:300;
    font-size: 15px;
    background:#000;
    border:none;
}
body {
    margin:1em 0 0 2em;
}
div.flex {
    display:flex;
    gap:3em;
    clear:both;
}
html {
    background: black;
}
.nav {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    z-index: 100;
}
body#queue {
    font-size:80%;
}
table,
tr,
td,th {
    margin: 0;
    border: 0;
    border-collapse: collapse;
}
table {
    margin-bottom:2.5em;
}
td {
    border: 1px solid #444;
    padding: 5px 10px;
    text-align:center;
}
td.right {
    text-align:right;
}
td.left {
    text-align:left;
}
th {
    padding:0.5em;
    color:#666;
    font-weight:300;
}
tr:not(:first-child):hover {
    background:#222;
}
a:hover,
a.cur:hover {
    color: black;
    background: #fff;
    text-shadow: none;
    font-weight: 700;
    text-shadow: 0 2px #ccc;
}
a.cur {
    color: white;
    background: #333;
    font-weight: 700;
    text-shadow: 0 2px black;
}
td b.multi {
    font-weight:700;
    padding-right:0.8em;
    color:#fff;
}
td b.single {
    font-weight:700;
    padding-right:0.8em;
    color:#444;
}
td b.arrow {
    color:#444;
}
td span {
   color:#aaa;
}

td.status {
    width:30em;
    padding:0;
    margin:0;
    color:#888;
    font-weight:300;
    overflow: hidden;
}
div.status {
    padding:5px 0;
    margin:0;
    display:block;
    height:100%;
    background: #191919;
    float:left;
    border:solid #111;
    border-width:3px 0;
}
div.hidelabel {
    color:rgba(0,0,0,0);
}
div.new {
    background: #000;
    border-color:#000;
    color:#555;
    float:right;
}
div.completed {
    background: #333;
    border-color:#292929;
}
div.in_progress {
    text-align:center;
}

#clearqueue {
    position:absolute;
    top:0;
    right:0;
    display:block;
    font-size:150%;
    font-weight:bold;
    width:10em;
    text-align:center;
}
code {
    font-family: "Iosevka", monospace;
    font-weight:300;
        white-space: pre-wrap;
}
h1 {
    color:#fff;
    margin:0.5em 0;
}
h1 i {
    color:#999;
    font-style:normal;
    font-size:70%;
    padding-left:1em;
}
h1 a {
    margin-left:-0.5em;
    text-decoration: none;
    padding: 0.2em 0.5em;
    background: #0a0a0a;
    color:#fff;
    font-weight:300;
}
h1 a:hover {
    text-shadow: 0 1px #ccc,0 3px #ccc;
}
div.column {
    flex:0 0 auto;
}
button {
    font-weight:bold;
    background:transparent;
}
td button {
    margin: -5px -10px;
    padding: 5px 10px;
}
button:hover {
    color:#000;
    background:#9f3;
    text-shadow: 0 2px #7c0, 0 1px #7c0;
    cursor:pointer;
}
button.kill:hover {
    color:#000;
    background:#f36;
    text-shadow: 0 2px #d24, 0 1px #d24;
    cursor:pointer;
}
tr.failed {
    color:#644;
}
