.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 20px;
}

.maze {
    display: grid;
    grid-template-columns: repeat(20, 30px);
    grid-template-rows: repeat(20, 30px);
    gap: 0;
    border: 2px solid #333;
}

.cell {
    background-color: white;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.wall-top {
    border-top: 2px solid black;
}

.wall-right {
    border-right: 2px solid black;
}

.wall-bottom {
    border-bottom: 2px solid black;
}

.wall-left {
    border-left: 2px solid black;
}

.start {
    background-color: #4CAF50 !important;
}

.end {
    background-color: #f44336 !important;
}

.path {
    background-color: #2196F3;
}

button {
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    background-color: #008CBA;
    color: white;
    border: none;
    border-radius: 5px;
}

button:hover {
    background-color: #007399;
}


