:root {
    --background: #1d1d1d;
    --shade: #181818;
    --light: #313131;
    --text-color: white;
    --font: "Roboto Mono", monospace;
    font-size: 18px;
}

* {
    padding: 0px;
    margin: 0px;
    font-family: var(--font);
    color: var(--text-color) !important;
    border: none;
    outline: none;
}

html,
body {
    width: 100%;  
    height: 100%;
}

.panel {
    height: 100%;
    box-sizing: border-box;
    position: absolute;
    top: 0px;
    padding: 10px;
    background-color: var(--background);
}

#left {
    width: 20%;
    left: 0px;
}

#right {
    width: 80%;
    right: 0px;
}

.prevalue {
    width: 100%;
    overflow: hidden;
    height: 30px;
}

input, select {
    border: 1px solid var(--light);
}

#mode {
    width: 100%;
    height: 24px;
    background-color: var(--shade);
    margin-bottom: 5px;
}

input {
    background-color: var(--shade);
    padding-left: 10px;
    padding-right: 10px;
    box-sizing: border-box;
    display: block;
    margin-bottom: 5px;
}

option {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

input[type="number"] {
    -webkit-appearance: textfield;
    -moz-appearance: textfield;
    appearance: textfield;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
}

input[type=checkbox] {
    display: inline;
}

ul {
    list-style: none;
}

.quest {
    padding-left: 20px;
}

.category {
    background-color: #2b2b2b;
    padding: 5px;
    border-radius: 5px;
    overflow-y: hidden;
    margin-bottom: 10px;
}

.unfolded .unfold-icon {
    display: none;
}

.folded .fold-icon {
    display: none;
}

.game-toggle {
    width: 32px;
    height: 32px;
    float: left;
}

.folded-child {
    height: 34px;
}

svg {
    width: 32px;
    height: 32px;
    fill: white;
}

svg {
    width: 32px;
    height: 32px;
    fill: white;
}

#quest-picker {
    overflow: auto;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50%;
    height: 50%;
    background-color: var(--light);
    box-sizing: border-box;
    padding: 20px;
}


.category ul .quest span:first-of-type {
    color: orange!important;
}

.category ul .quest span:nth-of-type(2) {
    color: gold!important;
}

.category ul .quest span:nth-of-type(3) {
    color: aqua!important;
}

::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background-color: #1d1d1d;
}

::-webkit-scrollbar-thumb {
    background-color: var(--shade);
}

#booster {	
    display: inline;
    margin-left: 15px;
    padding: 5px;
}