

.game_board{
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}
    

 .grid {
    display: grid;
    grid-template-columns: repeat(10, 9%);
    width: 100%;
    margin: 0;
    gap: 2px;
    justify-content: center;
    align-items: center;
}

/* Cell wrapper */
.block, .cell {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  background: white;
}

/* Input inside cell */
.grid input {
    width: 86%;
    height: 86%;
    border: 1px solid #fff;
    text-align: center;
    font-size: clamp(14px, 4vw, 20px);
    text-transform: uppercase;
    outline: none;
    background: white;
}

/* Black cells */
.block {
  background: black;
}

/* Hide input in block cells */
.cell.block input {
  display: none;
}

/* Cell numbers */
.number {
  position: absolute;
  top: 2px;
  left: 4px;
  font-size: 10px;
  color: black;
}

/* Highlighting */
.highlight {
  background: #fff9c4;
}

.active {
  background: #ffeb3b !important;
}

    .container {
        display: flex;
        justify-content: space-around;
        font-size: 14px;
        gap:20px;
    }

    .clues { width: 45%; text-align: left; }

    .buttons {
        margin: 15px;
        display: flex;
        justify-content: center;
        gap:10px;
    }
    button {
    margin: 10px;
    padding: 10px 20px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    }