html {
    background: linear-gradient(70deg,rgb(8, 16, 117), rgb(2, 6, 55));
    color: rgb(255, 255, 255);
}

body {
    height: 100%;
    overflow: hidden;
}

body, input {
    text-align: center;
}

* {
    scrollbar-width: thin;
    scrollbar-color: rgb(55, 0, 255) rgb(0, 14, 77);
}

*::-webkit-scrollbar {
    width: 0.7vw;
    height: 1vh;
}
*::-webkit-scrollbar-track {
    background: rgb(0, 14, 77);
}
*::-webkit-scrollbar-thumb {
    background: rgb(55, 0, 255);
}
*::-webkit-scrollbar-thumb:hover {
    background: rgb(74, 37, 255);
}

input {
    border-bottom-width: thin;
    border-radius: 0;
    border-color: rgb(226, 226, 226);
}
input[type="number"] {
    appearance: textfield;
    outline: none;
}
input[type="text"] {
    font-size: 1.2vw;

    background: transparent;
    -webkit-background-clip: unset;
    background-clip: unset;
    color: rgb(185, 185, 185);
}
input, button {
    background: linear-gradient(#262626,#eaeaea,#262626);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    caret-color: rgb(185, 185, 185);
}

::placeholder {
    opacity: 0.85;

    background: linear-gradient(#262626,#eaeaea,#262626);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
@-moz-document url-prefix() {
    :root input[type="text"], button {
        background: linear-gradient(#262626,#eaeaea,#262626);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        caret-color: rgb(185, 185, 185);
    }
    ::placeholder {
        background: initial;
    }
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

button {
    border-top-width: thin;
    border-color: rgb(150, 150, 150);
}
button:hover {
    cursor: pointer;
}
button:disabled {
    cursor: default;
}

#btn-dispatch {
    font-size: 1.5vw;
}

.copy-button-spacing {
    margin-left: auto;
}
.copy-button {
    padding-top: 0;
    padding-bottom: 0;

    transition: 0.7s;
}
.copy-button[disabled] {
    opacity: 0;
}
.checkShow {
    visibility: visible;
}
.check:not(.checkShow) {
    visibility: hidden;
}

.row {
    display: flex;
    flex-direction: row;
}
.column {
    display: flex;
    flex-direction: column;
}

.content-width-spacing {
    width: 33.33%;
    width: calc(100% / 3);
    text-align: center;
}

.name-space {
    width: 65%;
    max-width: 65%;
}
.priority-space {
    width: 18%;
    max-width: 18%;
}

.header-container {
    align-self: center;
    font-size: 1vw;
    width: 100%;
}
h1 {
    background: linear-gradient(#262626,#eaeaea,#262626);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;

    /* margin-left: auto;
    margin-right: auto; */
    margin-top: 0;
    margin-bottom: 0;
}

.top-row-corner {
    align-self: center;
    font-size: 1vw;
    width: 17vw;
}

.message-container {
    min-height: 2.5vh;
}
#message {
    width: 100%;
    font-size: 1.08em;

    background: linear-gradient(#262626,#eaeaea,#262626);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.processing {
    /* background: linear-gradient(rgb(255, 0, 0),rgb(182, 0, 0),rgb(255, 0, 0));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent; */

    color: rgb(255, 0, 0);
    background-color: rgba(0, 0, 0, 0.8);
    border-style: solid;
    border-color: rgba(255, 0, 0, 0.8);
    margin-bottom: 0.4em;
    text-align: center;
}
.current-status:not(.processing) {
    /* background: linear-gradient(rgb(0, 255, 0),rgb(0, 182, 0),rgb(0, 255, 0));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent; */

    color: rgb(0, 255, 0);
    background-color: rgba(0, 0, 0, 0.8);
    border-style: solid;
    border-color: rgba(0, 255, 0, 0.8);
    margin-bottom: 0.4em;
    text-align: center;
}

label {
    text-align: start;
}

.split-line {
    border-style: inset;
    border-width: thin;
    border-color: rgb(150, 150, 150);
    height: 100vh;

    margin-left: 0.7%;
    margin-right: 0.7%;
}

#cpu-1 {
    /* color: rgb(200, 25, 30); */
    background: linear-gradient(rgb(180, 42, 21), rgb(250, 60, 20), rgb(180, 30, 7));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
#cpu-2 {
    /*color: rgb(125, 79, 255);*/
    /*background: linear-gradient(rgb(125, 79, 255), rgb(141, 76, 255));*/
    /*background: linear-gradient(#24e6e9, #134679);*/
    background: linear-gradient(#b9dcef, #799bca);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
#cpu-3 {
    color: rgb(35, 204, 31)
}

.name {
    border-style: solid;
    border-width: thin;
    border-color: rgb(255, 255, 255);
    width: 65%;
}
.time {
    border-style: solid;
    border-width: thin;
    border-color: rgb(255, 255, 255);
}
.priority {
    border-style: solid;
    border-width: thin;
    border-color: rgb(255, 255, 255);
    width: 18%;
}

.processes {
    /* min-height: 26%;
    max-height: 26%; */
    min-height: 10.5em;
    max-height: 10.5em;
    overflow: auto;
    float: none;
}
@-moz-document url-prefix() {
    .processes {
        overflow: scroll;
    }
    .row label {
        margin-right: 0.4vw;
    }
}

/* .row .content-width-spacing, label {
    background: linear-gradient(#9e9e9e,#eaeaea,#9e9e9e);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
} */
/* .processes, label {
    background: linear-gradient(#9e9e9e,#eaeaea,#9e9e9e);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
} */

.bar-chart-size {
    height: 5vh;
    width: 8vw;
}
.pie-chart-container {
    position: relative;
    width: 14vw;
    margin-left: auto;
    margin-right: auto;
}
@media (max-width: 900px) {
    .pie-chart-container {
        width: 18vw;
    }
    label {
        font-size: 1.17vw;
    }
    .copy-button {
        font-size: 1vw;
    }
}
@media (min-width: 1401px) and (min-height: 500px) {
    .pie-chart-container {
        width: 10vw;
    }
}
@media (min-width: 1401px) and (min-height: 800px) {
    .pie-chart-container {
        width: 16vw;
    }
}