* {
    color: blue;
    font-size: 16px;
    font-family: sans-serif;
    background-color: aliceblue;
}

input {
    width: 120px
}

input:enabled {
    border: 2px dashed black;
    border-radius: 4px;
}

input:focus {
    background-color: whitesmoke;
    border: 2px solid blue;
}

input[type=number] {
    width: 40px;
    font-weight: bold;
    border-style: solid;
}

input[type=button] {
    color: antiquewhite;
    background-color: blue;
    border-style: solid;
    cursor: pointer;
}

input:disabled {
    border: 0;
    background-color: transparent;
    font-weight: inherit;
}

input[type=button]:disabled {
    background-color: lightgray;
    cursor:default;
}

input[type=file] {
    color: antiquewhite;
    background-color: green;
    border-style: solid;
    cursor: pointer;
}

table {
    border-collapse: collapse;
}

td {
    text-align: center;
    border: 2px solid darkblue;
    padding: 8px;
}

#DATA * {
    padding: 2px;
}

#EDIT {
    width: 100px;
    font-weight: bold;
    color: darkblue;
    background-color: whitesmoke;
}

p * {
    font-size: 14px;
}

#HINT * {
    font-size: 12px;
}

#STAT {
    color: green;
    font-weight: bold;
}

.head {
    font-weight: bold;
    background-color: lightgrey;
    border-right: 3px solid darkblue;
}

.hori {
    line-height: 8px;
    text-align: right;
    border-left-style: none;
}

.cbox {
    max-width: 8px;
    line-height: 8px;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    cursor: pointer;
    user-select: none;
}

.vert {
    text-align: left;
    max-width: 8px;
    writing-mode: tb-rl;
    border-top-style: none;
    transform: rotate(-180deg);
    background-color: transparent;
}

g {
    color: green;
}

r {
    color: red;
}

.fix {
    font-weight: bold;
    background-color: lightgreen;
}

input[type=button].solve {
    max-width: 40px;
    height: 40px;
    background-color: whitesmoke;
}

#COMM {
    color: black;
    font-size: 12px;
    font-family: monospace;
}

#HINT {
    margin: 0;
    padding-top: 8px;
    padding-left: 24px;
}

p {
    margin-top: 8px;
    margin-bottom: 0;
    padding-bottom: 4px;
}

#NAME {
    border: 2px solid black;
    border-radius: 4px;

    
    cursor: pointer;
    padding:4px;
}