﻿body {
    background-color: #000000;
    font-family: Calibri, sans-serif;
    color: black;
}

.KeyboardButton {
    cursor: pointer;
    cursor: hand;
    border: none;
    border-radius: 10px;
    background-color: dimgray;
    color: white;
    width: 75px;
    height: 100px;
    font-weight: bold;
    font-family: 'Clear Sans', 'Helvetica Neue', Arial, sans-serif;
    font-size: 24pt;
}

.KeyboardButtonNone {
    cursor: pointer;
    cursor: hand;
    border: none;
    border-radius: 10px;
    background-color: #3c3c3c;
    color: white;
    width: 75px;
    height: 100px;
    font-weight: bold;
    font-family: 'Clear Sans', 'Helvetica Neue', Arial, sans-serif;
    font-size: 24pt;
}

.KeyboardButtonInWord {
    cursor: pointer;
    cursor: hand;
    border: none;
    border-radius: 10px;
    background-color: #c0c814;
    color: white;
    width: 75px;
    height: 100px;
    font-weight: bold;
    font-family: 'Clear Sans', 'Helvetica Neue', Arial, sans-serif;
    font-size: 24pt;
}

.KeyboardButtonCorrect {
    cursor: pointer;
    cursor: hand;
    border: none;
    border-radius: 10px;
    background-color: #419112;
    color: white;
    width: 75px;
    height: 100px;
    font-weight: bold;
    font-family: 'Clear Sans', 'Helvetica Neue', Arial, sans-serif;
    font-size: 24pt;
}

.ScoreValue {
    color:white;
    font-size:24pt;
    font-weight:bold;
}

.LetterButton {
    cursor: default;
    border: solid;
    border-width: 1px;
    border-color: silver;
    background-color: black;
    color: white;
    width: 135px;
    height: 135px;
    font-weight: bold;
    font-family: 'Clear Sans', 'Helvetica Neue', Arial, sans-serif;
    font-size: 28pt;
}

.LetterButtonNone {
    cursor: default;
    border: none;
    background-color: #3c3c3c;
    color: white;
    width: 135px;
    height: 135px;
    font-weight: bold;
    font-family: 'Clear Sans', 'Helvetica Neue', Arial, sans-serif;
    font-size: 28pt;
}

.LetterButtonInWord {
    cursor: default;
    border: none;
    background-color: #c0c814;
    color: white;
    width: 135px;
    height: 135px;
    font-weight: bold;
    font-family: 'Clear Sans', 'Helvetica Neue', Arial, sans-serif;
    font-size: 28pt;
}

.LetterButtonCorrect {
    cursor: default;
    border: none;
    background-color: #419112;
    color: white;
    width: 135px;
    height: 135px;
    font-weight: bold;
    font-family: 'Clear Sans', 'Helvetica Neue', Arial, sans-serif;
    font-size: 28pt;
}

.LetterTable {
    width: 740px;
    margin: 3px;
    border-style: none;
    display: inline-table;
}

.LetterTable tr td {
    padding: 0 5px;
    border-style: none;
}

.KeyboardTable {
    width: 780px;
    margin: 2px;
    padding: 0;
    border-style: none;
    display: inline-table;
    margin-bottom: 30px;
}

.KeyboardTable tr td {
    border-style: none;
    border-color: black;
    padding:2px;
}

.center {
    margin: auto;
    width: 910px;
}

button:disabled,
button[disabled] {
    border: 1px solid #999999;
    background-color: #cccccc;
    color: #666666;
}

button {
    touch-action: manipulation;
}

.HistoryTextArea {
    height: 800px;
    width: 300px;
    font-family: monospace;
    font-size: 24pt;
    background-color: navy;
    color: white;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

.HistoryHeader {
    font-size: 18pt;
    border: none;
    padding: 2px;
    color: white;
}

.HistoryDialogClass .ui-widget-header {
    background: navy;
    color:white;
    font-size:16pt;
}

.HistoryDialogClass .ui-dialog, .ui-widget, .ui-widget-content {
    background: #222222;
}

div a:link {
    color: limegreen;
}

div a:visited {
    color: lightgray;
}

div a:hover {
    color:blue;
}

div a:focus {
    outline: 0;
}

#alertDiv {
    width: 600px;
    height: 80px;
    position: fixed;
    z-index: 100;
    top: 40%;
    left: 30%;
    margin: -100px 0 0 -100px;
    text-align:center;
    align-items:center;
    align-content:center;
    justify-content:center;
    color: limegreen;
    background-color: black;
    border: solid;
    border-color: limegreen;
    font-size: 32pt;
    font-weight: bold;
    display: none;
}