#puzzle-grid {
    display: grid;
    gap: 0px;
    border: solid 8px #222222;
}

input:disabled {
    background: #222222;
}

.crossword-box {
    text-align: center;
    text-transform: uppercase;
    padding: 0;
    border: solid 1px #222222;
    font-size: 14px;
    caret-color: transparent;
}

.crossword-box-container {
    position: relative;
    width: 100%;
    background: #222222;
}

.crossword-box-label {
    position: absolute;
    font-size: .8em;
    top: 2px;
    left: 2px;
    color: #aaaaaa;
    font-size: 7px;
}

#active-clue {
    background-color: lightcyan;
    font-size: 20px;
    text-align: center;
    padding: 32px;
    margin: 0;
}

#active-clue-num {
    font-weight: 600;
    margin-right: 12px;
}

.clue-selected {
    background-color: lightcyan;
}

.box-selected {
    background-color: lemonchiffon;
}

.clue {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 8px;
    margin-bottom: 12px;
}

@media screen and (min-width: 480px) { 
    .crossword-box {
        font-size: 18px;
    }

    .crossword-box-label {
        font-size: 9px;
    }

    .clues-section {
        display: grid;
        gap: 16px;
        grid-template-columns: 1fr 1fr;
    }
}

.puzzle-options {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}