/* /Components/SudokuGridComponent.razor.rz.scp.css */
.sudoku-grid[b-k2i8aghopa] {
    display: grid;
    grid-template-columns: repeat(9, 1fr);
    grid-template-rows: repeat(9, 1fr);
    margin-top: 2rem;
    width: 100%;
    height: 100%;
}

.sudoku-cell[b-k2i8aghopa] {
    width: 100%;
    text-align: center;
}

.sudoku-cell-top-thick[b-k2i8aghopa] {
    border-top: 2px solid black;
}

.sudoku-cell-top-thin[b-k2i8aghopa] {
    border-top: 1px solid black;
}

.sudoku-cell-left-thick[b-k2i8aghopa] {
    border-left: 2px solid black;
}

.sudoku-cell-left-thin[b-k2i8aghopa] {
    border-left: 1px solid black;
}

.sudoku-cell-bottom-thick[b-k2i8aghopa] {
    border-bottom: 2px solid black;
}

.sudoku-cell-right-thick[b-k2i8aghopa] {
    border-right: 2px solid black;
}

.sudoku-text-set[b-k2i8aghopa] {
    font-size: 40px;
}

.sudoku-text-editable-light-mode[b-k2i8aghopa] {
    font-size: 40px;
    color: blue;
}

.sudoku-text-editable-dark-mode[b-k2i8aghopa] {
    font-size: 40px;
    color: lightblue;
}
