:root {
    --key-width: 45px;
    --key-space: 3px;
    --key-border: 1px;
    --tab-width: 65px;
    --blue: #3d50cf;
    font-family: 'Courier New', Courier, monospace;
    background-color: #222222;
    color: #eeeeee;
}

#type_div {
    text-align: center;
}

#type_area {
    margin-top: 10px;
    width: 70%;
    max-width: 770px;
    padding: 5px;
    font-family: 'Courier New', Courier, monospace;
    font-size: 12pt;
    background-color: black;
    color: #cccccc;
    border-radius: 9px 9px 0px 0px;
    resize: vertical;
    position: relative;
    z-index: 10;
}

#type_area:focus {
    outline: none !important;
    border: 2px solid var(--blue);
}

#prompt {
    border: 1px solid #444444;
    border-radius: 0px 0px 9px 9px;
    width: calc(70% + 10px);
    max-width: 780px;
    height: 100px;
    margin: -8px auto 10px auto;
    background-color: #161616;
    text-align: left;
    padding-top: 5px;
    overflow-y: auto;
}

#prompt div {
    padding: 2px 0px 2px 5px;
}

.variable_category {
    background-color: #252525;
    color: #999999;
}

.variable_option {
    position: relative;
    cursor: pointer;
}

.variable_option:hover {
    background-color: #111111;
}

.variable_span {
    padding-left: 15px;
}

.char_span {
    position: absolute;
    left: 175px;
}

#character_code {
    margin-top: 20px;
    width: 500px;
    background-color: #222222;
    color: #eeeeee;
    box-shadow: 0px 10px 30px black;
    border-radius: 10px;
    border: 1px solid #888888;
}

#character_code li {
    padding-bottom: 10px;
}

#notes {
    width: 70%;
    max-width: 770px;
    margin: 20px auto 50px auto;
}

code {
    background-color: #444444;
    padding: 2px 3px 2px 3px;
    border-radius: 5px;
}

table {
    margin: 20px auto 20px auto;
}

table td {
    padding-left: 10px;
    padding-right: 10px;
}

#dialog_close {
    display: block;
    margin-left: auto;
    outline: none !important;
    background-color: #111111;
    border: 0px;
    border-radius: 5px;
    color: #bbbbbb;
    font-size: 20px;
    cursor: pointer;
}

#title {
    width: 350px;
    margin-left: auto;
    margin-right: auto;
    border-bottom: 1px solid #cccccc;
    margin-bottom: 15px;
}

#links {
    text-align: center;
    margin-bottom: 5px;
}

#links a {
    padding: 10px;
    text-decoration: none;
    color: var(--blue);
}

#links a:hover {
    font-style: italic;
}

h1 {
    text-align: center;
    margin-bottom: 12px;
}

#footer {
	font-size: 8pt;
    text-align: center;
    position: fixed;
    bottom: 0;
    width: 100%;
    padding-bottom: 10px;
	padding-top: 5px;
	background-color: #222222;
	border-top: 1px;
	border-left: 0px;
	border-right: 0px;
	border-bottom: 0px;
	border-style: solid;
}
