@charset "utf-8";



table.keyboard {
    background-color: #535353;
    border-spacing: 5px;
    border-collapse: separate;
}

table.keyboard td {
    width: 50px;
    height: 50px;
    text-align: center;
    vertical-align: middle;
    font-size: 30px;
    background-color: #333333;
    color: #c3c3c3;
    margin: 5px;
}

table.keyboard td:hover {
    background-color: #e5e5e5;
    color: black;
}

table.keyboard td:active {
    background-color: #93cde1;
    color: #5b5b5b;
}

table.keyboard td.no-entry:active {
    background-color: #e1a093;
    color: #5b5b5b;
}

.outer-container {
    border: 1px solid black;
    height: 220px;
    width: 500px;
    margin: 30px;
    position: relative;
    transform: translateX(400px) scale(160%);
}

.grid {
    display: grid;
    grid-template-rows: repeat(2, 62px);
    gap: 0;
}

.grid-char-cell {
    width: 62px;
    height: 62px;
    border: 1px solid #93cde1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 45px;
    box-sizing: border-box;
    background-image: url("./empty-char-cell.svg");
    background-size: contain;
}

.grid-char-cell.unfilled-char-cell {
    background-image: url("./unfilled-char-cell.svg");
}

.grid-unicode-cell {
    width: 62px;
    height: 24px;
    border: 1px solid #93cde1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    box-sizing: border-box;
}

.immutable {
    font-size: 80%;
    color: #666;
}

.single-digit-codepoint {
    margin: 2px;
    max-width: 1em;
    text-transform: uppercase;
}

.double-digit-codepoint {
    margin: 2px;
    max-width: 1.5em;
    text-transform: uppercase;
}

.input-container {
    width: 100%;
    display: flex;
}

#commentary-text{
    font-weight: bold;
}