body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

#game-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

table {
    border-collapse: collapse;
}

.cell {
    width: 40px;
    height: 40px;
    border: 1px solid black;
}

.cell.path {
    background-color: lightgray;
}
