body {
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #f4f4f9;
    margin: 20px;
}

header {
    text-align: center;
    margin-bottom: 20px;
}

.controls {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    align-items: center;
}

button {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    transition: background-color 0.3s;
}

#solveBtn {
    background-color: #4CAF50;
    /* Green */
    color: white;
}

#clearBtn {
    background-color: #f44336;
    /* Red */
    color: white;
}

#mazeCanvas {
    border: 3px solid #333;
    background-color: white;
    cursor: crosshair;
    /* Indicates a drawing area */
}