html {
    background-color: #000000;
    color: #ff8000;
}

body {
    background-color: #000000;
    color: #ff8000;
}

.darktext {
    color: #404040
}

/* unvisited link */
a:link {
    color: #00A0FF;
}

/* visited link */
a:visited {
    color: #00A0FF;
}

input {
    color: #FF8000;
    background-color: #222;
    border:2px solid #444;
    border-radius: 0.5em;
}
input:disabled {
    color: #804000;
    background-color: #111;
    border:2px solid #222;
    border-radius: 0.5em;
}
input:focus {
    color: #FF8000;
    background-color: #222;
    border:2px solid #FF8000;
    outline: none;
}
textarea {
    color: #FF8000;
    background-color: #222;
    border:2px solid #444;
    border-radius: 0.5em;
}

button {
    background-color: #222;
    border: 2px solid #444;
    color: #FF8000;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    border-radius: 0.5em;
}
button:disabled {
    background-color: #111;
    border: 2px solid #222;
    color: #804000;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    border-radius: 0.5em;
}
input::file-selector-button {
    background-color: #222;
    border: 2px solid #444;
    color: #FF8000;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    border-radius: 0.5em;
}

input[type="checkbox"] {
    accent-color: #ff8000;
}

select {
    background-color: #222;
    border: 2px solid #444;
    color: #FF8000;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    border-radius: 0.5em;
}

/* https://www.w3schools.com/howto/howto_css_custom_checkbox.asp */
/* Customize the label (the container) */
.checkmark_container {
    display: inline;
    position: relative;
    padding-left: 1.4em;
    /* margin-bottom: 12px; */
    cursor: pointer;
    /* font-size: 22px; */
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Hide the browser's default checkbox */
.checkmark_container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Create a custom checkbox */
.checkmark {
    position: absolute;
    top: 0.25em;
    left: 0.25em;
    height: 0.8em;
    width: 0.8em;
    background-color: #222;
    border: 0.1em solid #444;
    border-radius: 0.2em;
}

/* On mouse-over, add a grey background color */
.checkmark_container:hover input ~ .checkmark {
    background-color: #333;
}

/* When the checkbox is checked, add a blue background */
.checkmark_container input:checked ~ .checkmark {
    background-color: #FF8000;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.checkmark_container input:checked ~ .checkmark:after {
    display: inline;
}

/* Style the checkmark/indicator */
.checkmark_container .checkmark:after {
    left: 0.21em;
    top: 0.05em;
    width: 0.20em;
    height: 0.44em;
    border: solid #222;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
} 

.grey {
    color: #808080;
    padding: 0px;
    padding-right: 5px;
    padding-left: 5px;
}

.footer { 
    position: absolute; 
    bottom: 0; 
    left: 0; 
    z-index: 10;
}
