
#game-container {

}

#grid-controls-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center; /* Center content horizontally */
}

#grid-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 10px; /* Space between hints and grid */
    margin-bottom: 20px; /* Space between grid and controls */
}

#hints {
    display: flex;
    flex-direction: column;
    /* gap: 40px; Space between hints */
}

.hint {
    width: 400px; /* Adjust width as needed */
    font-size: 18px;
    text-align: justify;
    padding-top: 10px;
    padding-right: 10px;
    box-sizing: border-box;
/* Align with grid rows - original 60px */
    line-height: 25px; 
    min-height: 63px;
}

#grid {
    display: grid;
    grid-template-columns: repeat(5, 60px); /* Adjust cell size */
    grid-template-rows: repeat(4, 60px); /* Adjust cell size */
    gap: 5px;
}

.cell {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    background-color: #ffffff;
    border: 1px solid #cccccc;
    font-size: 24px;
    cursor: pointer;
    user-select: none;
}

.cell.selected {
    background-color: yellow;
    color: black;
}

.cell.correct {
    background-color: green;
    color: white;
}

/* New CSS for completed rows */
.row-complete {
    background-color: green;
    color: white;
    font-weight: bold;
}

#message {
    font-size: 18px;
    color: green;
    margin: 10px 0; /* Space out from grid and controls */
    text-align: center;
}

#controls {
    display: flex;
    justify-content: center; /* Center controls horizontally */
    gap: 10px; /* Space between buttons */
}

button {
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
}
