html {
    box-sizing: border-box;
    height: 100%;
}

*,
*:before,
*:after {
    box-sizing: inherit;
}

.darkmode-toggle {
    float: right;
}

body {
    position: relative;
    margin: 0;
    padding-bottom: 100px;
    min-height: 100%;
    font-family: "Didact Gothic", sans-serif;
    font-size: 16px;
}

body #content {
    padding: 0 10px;
}

body #site input.button {
    border-radius: 50px;
    width: 150px;
    padding: 15px;
    font-size: 15px;
    font-weight: bold;
    font-family: "Didact Gothic", sans-serif;
}

body #site input.button:hover {
    cursor: pointer;
}

body #site input.input-textbox {
    border-radius: 10px;
    font-size: 16px;
}

.styled-table {
    border: 1px solid black;
    border-radius: 10px;
}

.styled-table td:not(:last-child), .styled-table th:not(:last-child) {
    border-right: 1px solid black;
}

.styled-table th {
    border-bottom: 1px solid black;
}

.styled-table thead tr {
    background: white;
}

.styled-table tr:nth-child(2n) {
    background: white;
}

.absCY {
    position: absolute;
    transform: translateY(-50%);
    top: 50%;
}

.tac {
    text-align: center;
}

.tal {
    text-align: left;
}

.tar {
    text-align: right;
}

.fr {
    float: right;
}

.most {
    width: 80%;
    margin: auto;
}

.hdn {
    display: none;
}

.monospace {
    font-family: monospace;
}

.editIcon {
    width: 22px;
    padding: 2px;
}

.smolits {
    font-size: 10px !important;
    font-style: italic;
}

.green {
    color: #1F8A0E;
}

.red {
    color: #D94D4D;
}

.width100 {
    width: 100%;
}

.width50 {
    width: 50%;
}

body.dark-theme {
    background-color: #23272A;
}

body.dark-theme #site {
    color: #73d5ff;
}

body.dark-theme input.button {
    color: #fdfdfd;
    background-color: #00b1fc;
    border: 2px solid #52555c;
}

body.dark-theme input.button:hover {
    background-color: #008dc9;
    color: #efefef;
}

body.dark-theme input.button:focus {
    outline: none;
}

body.dark-theme #site input.input-textbox,
body.dark-theme #site textarea.input-textbox {
    background-color: #efefef;
}

body.dark-theme #site input.input-textbox:focus,
body.dark-theme #site textarea.input-textbox:focus {
    box-shadow: 0px 0px 4px #00b1fc;
}

body.light-theme {
    background-color: #DCF0FA;
}

body.light-theme #site {
    color: #241e1e;
}

body.light-theme input.button {
    color: #fdfdfd;
    background-color: #00b1fc;
    border: 2px solid #52555c;
}

body.light-theme input.button:hover {
    background-color: #008dc9;
    color: #efefef;
}

body.light-theme input.button:focus {
    outline: none;
}

body.light-theme #site input.input-textbox,
body.light-theme #site textarea.input-textbox {
    background-color: #fdfdfd;
}

body.light-theme #site input.input-textbox:focus,
body.light-theme #site textarea.input-textbox:focus {
    box-shadow: 0px 0px 4px #00b1fc;
}
