
html {
    font-family: Arial, Helvetica, sans-serif;
}

body {
    text-align: center;
}

.center {
    margin: 100px auto;
    width: 100%;
    max-width: 800px;
    text-align: left;
}

.highscores-table {
    width: 100%;

    border-top: solid 1px #03a5fc;
    border-bottom: solid 1px #03a5fc;
    padding: 12px 0;

    border-collapse: separate;
    border-spacing: 0 0;
}


.highscores-table tr > td:first-child {
    border-left: 4px solid rgba(0, 0, 0, 0.0);
}

.highscores-table tr:hover {
    background-color: #e0e0e0;
}

.highscores-table td, .highscores-table th {
    padding: 6px 12px;
    text-align: left;
}

tr.highlight {
    background-color: #d1f7ff;
}

tr.highlight > td:first-child {
    border-left: 4px solid skyblue;
}

.highscores-table tr.highlight:hover {
    background-color: #a6e6f3;
}

a:link {
    color: #03a5fc;
}

a:visited {
    color: #0377fc;
}

a:active {
    color: #0b91de;
}

form {
    border-top: solid 1px #03a5fc;
    border-bottom: solid 1px #03a5fc;
    padding: 12px 8px;
}

.focus-section {
    border-top: solid 1px #03a5fc;
    border-bottom: solid 1px #03a5fc;
    padding: 12px 8px;
}

form > input[type=text], form > input[type=submit], form > input[type=number], form > input[type=date], form > input[type=password], form > select {
    display: block;
    width: 100%;
}

form > input[type=checkbox] {
    margin-right: 10px;
    margin-top: 2px;
    width: 14px;
    height: 14px;
}

form > label {
    line-height: 1.8;
}

form > input, form > select {
    margin-bottom: 10px;
}

input, select {
    padding: 8px 10px;
    border-radius: 8px;
    border: 1px solid #03a5fc;
    font-size: 16px;
}

form > input[type=submit] {
    margin-top: 20px;
    padding: 8px 10px;
    background-color: #03a5fc;
    color: white;
    border: none;
    cursor: pointer;
}

.right {
    text-align: right;
}

.text-center {
    text-align: center;
}

.code {
    background-color: #eb4034;
    color: white;
    padding: 4px 16px;
    font-weight: bold;
    font-size: 24px;
    margin-left: 6px;
}

.code-wrapper {
    font-size: 20px;
}

.form-detail {
    font-size: 16px;
    color: grey;
    margin-top: -6px;
}

label.incorrect {
    color: #e61e1e;
}

input.incorrect {
    border: 1px solid #e61e1e;
}

.incorrect.hidden {
    display: block;
    color: #e61e1e;
}

.hidden {
    display: none;
}

.center-image {
    text-align: center;
}
.center-image img {
    margin: 0 auto;
}