.outer {
    display: grid;
    grid-template-columns: repeat(4, auto);
    gap: 5px;
    margin: auto;
    justify-content: center;
    margin-top: 15px;
    position: relative;
}
.inner {
    border: solid 2px rgb(54, 54, 54);
    box-sizing: border-box;
    width: 85px;
    height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 5px;
    background-color: rgb(26, 31, 58);
    cursor: pointer;
}
.inner:hover {
    border: solid 2px #f5f5dc6b;
    background-color: rgb(30 36 67);
}
.hi {
    border: solid 2px #ffff00b3 !important
}
.clue {
    font-size: 13px;
    line-height: 12px;
    padding: 0 1px;
    margin: auto;
}
.name {
    font-size: 14px;
    margin: 1em 0 0 0;
}
body {
    text-align: center;
    font-family: system-ui;
    background-color: rgb(10,13,39);
    color: beige;
    touch-action: manipulation;
}
div.G {
    background-color: lightgreen !important;
    color: black;
}
div.R {
    background-color: lightcoral !important;
    color: black;
    }
b.G {
    color: green;
}
b.R {
    color: darkred;
}
div.dim *{
    opacity: 40%;
}
.name select {
    appearance: none;
    padding: 0 5px;
    background-color: transparent;
    border: 0;
    font-style: italic;
    font-weight: bold;
    text-align-last: center;
    outline: none;
    color: inherit;
    cursor: pointer;
}
.name option {
    font-style: normal;
    color: black;
}
.accuse {
    border: 1px solid black;
    margin: auto;
    width: 200px;
    height: 100px;
    color: black;
    position: fixed;
    top: calc(35% - 50px);
    left: calc(50% - 100px);
    background-color: lightgoldenrodyellow;
    visibility: hidden;
    z-index: 99;
}
.accuse .buttons {
    display: flex;
    justify-content: space-evenly;
}
.buttons div {
    border: 1px solid grey;
    width: 75px;
    text-align: center;
    cursor: pointer;
    font-size: 14px;
}
.overlay {
    position: fixed;
    height: 100vh;
    width: 100vw;
    visibility: hidden;
    background-color: black;
    opacity: 50%;
    top: 0;
    left: 0;
}